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

adjust video audio channels for safari

This commit is contained in:
Luke Pulverenti 2015-12-29 11:13:31 -05:00
parent dbfe037f6e
commit 751b8d7fdf

View file

@ -316,6 +316,8 @@
} else {
var videoAudioChannels = browserInfo.safari ? '2' : '6';
profile.CodecProfiles.push({
Type: 'VideoAudio',
Codec: 'aac',
@ -335,7 +337,7 @@
{
Condition: 'LessThanEqual',
Property: 'AudioChannels',
Value: '6'
Value: videoAudioChannels
}
// Disabling this is going to require us to learn why it was disabled in the first place
//,
@ -359,7 +361,7 @@
{
Condition: 'LessThanEqual',
Property: 'AudioChannels',
Value: '6'
Value: videoAudioChannels
}
]
});