diff --git a/src/scripts/browserDeviceProfile.js b/src/scripts/browserDeviceProfile.js index 4370edaeaf..f38d7ab6e7 100644 --- a/src/scripts/browserDeviceProfile.js +++ b/src/scripts/browserDeviceProfile.js @@ -913,6 +913,19 @@ export default function (options) { profile.ContainerProfiles = []; + if (browser.tizen) { + // Tizen doesn't support more than 32 streams in a single file + profile.ContainerProfiles.push({ + Type: 'Video', + Conditions: [{ + Condition: 'LessThanEqual', + Property: 'NumStreams', + Value: '32', + IsRequired: false + }] + }); + } + profile.CodecProfiles = []; const supportsSecondaryAudio = canPlaySecondaryAudio(videoTestElement); diff --git a/src/strings/en-us.json b/src/strings/en-us.json index ce4ede183a..2d6678c325 100644 --- a/src/strings/en-us.json +++ b/src/strings/en-us.json @@ -1531,6 +1531,7 @@ "StoryArc": "Story Arc", "StopPlayback": "Stop playback", "StopRecording": "Stop recording", + "StreamCountExceedsLimit": "The number of streams exceeds the limit", "Studio": "Studio", "Studios": "Studios", "Subtitle": "Subtitle",