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

exclude secondary audio from direct play

This commit is contained in:
Luke Pulverenti 2015-12-18 12:31:24 -05:00
parent f7a0bd8486
commit eed08a0b3a

View file

@ -358,6 +358,21 @@
}
]
});
} else {
profile.CodecProfiles.push({
Type: 'VideoAudio',
Conditions: [
{
Condition: 'Equals',
Property: 'IsSecondaryAudio',
Value: 'false',
IsRequired: 'false'
}
]
});
}
if (isVlc) {