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:
commit
f4c49427fd
1 changed files with 2 additions and 1 deletions
|
@ -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');
|
videoAudioCodecs.push('flac');
|
||||||
hlsInFmp4VideoAudioCodecs.push('flac');
|
hlsInFmp4VideoAudioCodecs.push('flac');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue