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

update recording creation process

This commit is contained in:
Luke Pulverenti 2016-02-12 13:12:59 -05:00
parent 6aca855749
commit 31bb32ee03
7 changed files with 54 additions and 31 deletions

View file

@ -4,12 +4,6 @@
page.querySelector('#chkEnableThrottle').checked = config.EnableThrottling;
$('.radioEncodingQuality', page).each(function () {
this.checked = config.EncodingQuality == this.value;
}).checkboxradio('refresh');
$('#selectVideoDecoder', page).val(config.HardwareAccelerationType);
$('#selectThreadCount', page).val(config.EncodingThreadCount);
$('#txtDownMixAudioBoost', page).val(config.DownMixAudioBoost);
@ -27,7 +21,6 @@
ApiClient.getNamedConfiguration("encoding").then(function (config) {
config.EncodingQuality = $('.radioEncodingQuality:checked', form).val();
config.DownMixAudioBoost = $('#txtDownMixAudioBoost', form).val();
config.TranscodingTempPath = $('#txtTranscodingTempPath', form).val();
config.EncodingThreadCount = $('#selectThreadCount', form).val();