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

Merge branch 'jellyfin:master' into enable_hlsjs_with_webos

This commit is contained in:
Timi Tuohenmaa 2025-03-29 13:19:43 +02:00 committed by GitHub
commit 0318e1e1d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
201 changed files with 5941 additions and 4725 deletions

View file

@ -921,6 +921,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);