Merge pull request #6537 from dmitrylyzo/tizen-stream-count-limit

Limit number of streams on Tizen
This commit is contained in:
Bill Thornton
2025-03-28 12:54:58 -04:00
committed by GitHub
2 changed files with 14 additions and 0 deletions
+13
View File
@@ -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);
+1
View File
@@ -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",