1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

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
commit 06e1a004dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

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);

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",