mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update packaging
This commit is contained in:
parent
709f0726da
commit
0089f44a4d
6 changed files with 23 additions and 13 deletions
|
@ -47,8 +47,8 @@ define(['appSettings', 'userSettings', 'appStorage'], function (appSettings, use
|
|||
function updateDeviceProfileForAndroid(profile) {
|
||||
|
||||
// Just here as an easy escape out, if ever needed
|
||||
var enableVlcVideo = window.VlcAudio;
|
||||
var enableVlcAudio = true;
|
||||
var enableVlcVideo = true;
|
||||
var enableVlcAudio = window.VlcAudio;
|
||||
|
||||
if (enableVlcVideo) {
|
||||
|
||||
|
@ -151,6 +151,15 @@ define(['appSettings', 'userSettings', 'appStorage'], function (appSettings, use
|
|||
Value: '41'
|
||||
}]
|
||||
});
|
||||
|
||||
profile.TranscodingProfiles.filter(function (p) {
|
||||
|
||||
return p.Type == 'Video' && p.VideoCodec == 'h264';
|
||||
|
||||
}).forEach(function (p) {
|
||||
|
||||
p.AudioCodec += ',ac3';
|
||||
});
|
||||
}
|
||||
|
||||
if (enableVlcAudio) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue