From 436847b901049140ebd3e1f4209f327a8a882b58 Mon Sep 17 00:00:00 2001 From: rafma0 Date: Fri, 3 Nov 2023 21:07:37 -0300 Subject: [PATCH 1/2] remove video audio flac on tizen --- src/scripts/browserDeviceProfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/browserDeviceProfile.js b/src/scripts/browserDeviceProfile.js index afa8c8df760..29c7b107f2d 100644 --- a/src/scripts/browserDeviceProfile.js +++ b/src/scripts/browserDeviceProfile.js @@ -536,7 +536,7 @@ export default function (options) { } } - if (canPlayAudioFormat('flac')) { + if (canPlayAudioFormat('flac') && !browser.tizen) { videoAudioCodecs.push('flac'); hlsInFmp4VideoAudioCodecs.push('flac'); } From 0cef9ff69078c9796c013109ebe21e3a460bab56 Mon Sep 17 00:00:00 2001 From: rafma0 Date: Sun, 5 Nov 2023 22:41:36 -0300 Subject: [PATCH 2/2] add comment about the change --- src/scripts/browserDeviceProfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scripts/browserDeviceProfile.js b/src/scripts/browserDeviceProfile.js index 29c7b107f2d..56ec5a8ba52 100644 --- a/src/scripts/browserDeviceProfile.js +++ b/src/scripts/browserDeviceProfile.js @@ -536,6 +536,7 @@ export default function (options) { } } + // FLAC audio in video plays with a delay on Tizen if (canPlayAudioFormat('flac') && !browser.tizen) { videoAudioCodecs.push('flac'); hlsInFmp4VideoAudioCodecs.push('flac');