diff --git a/src/scripts/browserDeviceProfile.js b/src/scripts/browserDeviceProfile.js index d31e69894d1..dcc7e6385e1 100644 --- a/src/scripts/browserDeviceProfile.js +++ b/src/scripts/browserDeviceProfile.js @@ -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'); }