From f2cbfbb549b6450b0ed0bb7150447dedd646f005 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Wed, 26 May 2021 15:01:22 -0400 Subject: [PATCH] Merge pull request #2672 from nyanmisaka/patch-1 Remove OPUS from supported HLS audio formats (cherry picked from commit 95256a87b50a91fb6126b9e1e201ae50250d64c3) Signed-off-by: Joshua M. Boniface --- src/scripts/browserDeviceProfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/scripts/browserDeviceProfile.js b/src/scripts/browserDeviceProfile.js index c8a50c17ae..d56c1eb403 100644 --- a/src/scripts/browserDeviceProfile.js +++ b/src/scripts/browserDeviceProfile.js @@ -414,8 +414,10 @@ import browser from './browser'; if (canPlayAudioFormat('opus')) { videoAudioCodecs.push('opus'); - hlsInTsVideoAudioCodecs.push('opus'); webmAudioCodecs.push('opus'); + if (browser.tizen) { + hlsInTsVideoAudioCodecs.push('opus'); + } } if (canPlayAudioFormat('flac')) {