All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.in.shabinder.soundbound.models.AudioFormat.kt Maven / Gradle / Ivy

The newest version!
package `in`.shabinder.soundbound.models

import androidx.compose.runtime.Immutable


import kotlinx.serialization.Serializable


@Immutable
@Serializable
enum class AudioFormat: Comparable {
    MP3, MP4, FLAC, OGG, WAV, WEBM, WEBA, UNKNOWN;

    companion object {
        fun getFormat(format: String): AudioFormat = runCatching {
            valueOf(format)
        }.getOrDefault(UNKNOWN)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy