Skip to content

Commit

Permalink
remove video audio flac on tizen
Browse files Browse the repository at this point in the history
  • Loading branch information
rafma0 committed Nov 13, 2023
1 parent 4b6bbcf commit 6c97b7a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scripts/browserDeviceProfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down

0 comments on commit 6c97b7a

Please sign in to comment.