1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #4938 from rafma0/fix-tizen-flac

Remove FLAC Audio in Video Support for Tizen
This commit is contained in:
Bill Thornton 2023-11-09 01:18:16 -05:00 committed by GitHub
commit 6498758b62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -536,7 +536,8 @@ export default function (options) {
} }
} }
if (canPlayAudioFormat('flac')) { // FLAC audio in video plays with a delay on Tizen
if (canPlayAudioFormat('flac') && !browser.tizen) {
videoAudioCodecs.push('flac'); videoAudioCodecs.push('flac');
hlsInFmp4VideoAudioCodecs.push('flac'); hlsInFmp4VideoAudioCodecs.push('flac');
} }