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

Merge pull request #4993 from rafma0/backport-fix-tizen-flac

This commit is contained in:
Bill Thornton 2023-11-14 18:35:52 -05:00 committed by GitHub
commit f4c49427fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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