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

remove video audio flac on tizen

This commit is contained in:
rafma0 2023-11-12 23:43:10 -03:00
parent 4b6bbcfe26
commit 6c97b7a6d8

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');
}