Skip to content

Commit

Permalink
Enable Vorbis audio in video direct play
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelRUSF authored and nielsvanvelzen committed Mar 23, 2024
1 parent 82ef537 commit 4ba9e18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/src/main/java/org/jellyfin/androidtv/constant/Codec.kt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ object Codec {
const val PCM_S16LE = "pcm_s16le"
const val PCM_S24LE = "pcm_s24le"
const val TRUEHD = "truehd"
const val VORBIS = "vorbis"
const val WAV = "wav"
const val WEBMA = "webma"
const val WMA = "wma"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ class ExoPlayerProfile(
add(Codec.Audio.PCM_MULAW)
add(Codec.Audio.OPUS)
add(Codec.Audio.FLAC)
add(Codec.Audio.VORBIS)
}.toTypedArray()

private val allSupportedAudioCodecsWithoutFFmpegExperimental = allSupportedAudioCodecs
Expand Down

0 comments on commit 4ba9e18

Please sign in to comment.