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

added new setting to allow video upscaling

This commit is contained in:
Luke Pulverenti 2014-02-02 10:19:29 -05:00
parent 84d3728b86
commit 5ce0e6c170
2 changed files with 8 additions and 0 deletions

View file

@ -23,6 +23,8 @@
$('#txtTranscodingTempPath', page).removeAttr("required");
}
$('#chkAllowUpscaling', page).checked(config.AllowVideoUpscaling).checkboxradio("refresh");
Dashboard.hideLoadingMsg();
}
@ -90,6 +92,7 @@
config.TranscodingTempPath = '';
}
config.AllowVideoUpscaling = $('#chkAllowUpscaling', form).checked();
config.EnableDebugEncodingLogging = $('#chkEnableDebugEncodingLogging', form).checked();
config.MediaEncodingQuality = $('.radioEncodingQuality:checked', form).val();