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:
commit
06e1a004dc
2 changed files with 14 additions and 0 deletions
|
@ -913,6 +913,19 @@ export default function (options) {
|
||||||
|
|
||||||
profile.ContainerProfiles = [];
|
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 = [];
|
profile.CodecProfiles = [];
|
||||||
|
|
||||||
const supportsSecondaryAudio = canPlaySecondaryAudio(videoTestElement);
|
const supportsSecondaryAudio = canPlaySecondaryAudio(videoTestElement);
|
||||||
|
|
|
@ -1531,6 +1531,7 @@
|
||||||
"StoryArc": "Story Arc",
|
"StoryArc": "Story Arc",
|
||||||
"StopPlayback": "Stop playback",
|
"StopPlayback": "Stop playback",
|
||||||
"StopRecording": "Stop recording",
|
"StopRecording": "Stop recording",
|
||||||
|
"StreamCountExceedsLimit": "The number of streams exceeds the limit",
|
||||||
"Studio": "Studio",
|
"Studio": "Studio",
|
||||||
"Studios": "Studios",
|
"Studios": "Studios",
|
||||||
"Subtitle": "Subtitle",
|
"Subtitle": "Subtitle",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue