mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add ios dts workaround
This commit is contained in:
parent
9a068facd9
commit
8080a75e13
1 changed files with 19 additions and 0 deletions
|
@ -552,6 +552,25 @@ define(['browser'], function (browser) {
|
|||
maxLevel = '51';
|
||||
}
|
||||
|
||||
if (browser.iOS) {
|
||||
profile.ContainerProfiles.push({
|
||||
Type: 'Video',
|
||||
Conditions: [
|
||||
{
|
||||
Condition: 'NotEquals',
|
||||
Property: 'HasAudioCodec',
|
||||
Value: 'dca',
|
||||
IsRequired: false
|
||||
},
|
||||
{
|
||||
Condition: 'NotEquals',
|
||||
Property: 'HasAudioCodec',
|
||||
Value: 'dts',
|
||||
IsRequired: false
|
||||
}]
|
||||
});
|
||||
}
|
||||
|
||||
profile.CodecProfiles.push({
|
||||
Type: 'Video',
|
||||
Codec: 'h264',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue