jellyfin-web/dashboard-ui/scripts/encodingsettings.js

88 lines
2.9 KiB
JavaScript
Raw Normal View History

(function ($, document, window) {
function loadPage(page, config) {
2014-12-21 12:40:37 -07:00
$('#chkEnableDebugEncodingLogging', page).checked(config.EnableDebugLogging).checkboxradio('refresh');
$('#chkEnableThrottle', page).checked(config.EnableThrottling).checkboxradio('refresh');
2015-06-07 18:23:56 -07:00
$('.radioEncodingQuality', page).each(function () {
2014-12-26 10:45:06 -07:00
this.checked = config.EncodingQuality == this.value;
}).checkboxradio('refresh');
2015-06-07 18:23:56 -07:00
$('#selectVideoDecoder', page).val(config.HardwareVideoDecoder);
2015-09-03 10:01:51 -07:00
$('#selectThreadCount', page).val(config.EncodingThreadCount);
2014-04-18 10:16:25 -07:00
$('#txtDownMixAudioBoost', page).val(config.DownMixAudioBoost);
$('#txtTranscodingTempPath', page).val(config.TranscodingTempPath || '');
2014-04-18 10:16:25 -07:00
Dashboard.hideLoadingMsg();
}
2015-06-07 18:23:56 -07:00
function onSubmit() {
Dashboard.showLoadingMsg();
var form = this;
ApiClient.getNamedConfiguration("encoding").done(function (config) {
config.EnableDebugLogging = $('#chkEnableDebugEncodingLogging', form).checked();
config.EncodingQuality = $('.radioEncodingQuality:checked', form).val();
config.DownMixAudioBoost = $('#txtDownMixAudioBoost', form).val();
config.TranscodingTempPath = $('#txtTranscodingTempPath', form).val();
config.EnableThrottling = $('#chkEnableThrottle', form).checked();
2015-07-30 18:52:11 -07:00
config.EncodingThreadCount = $('#selectThreadCount', form).val();
config.HardwareVideoDecoder = $('#selectVideoDecoder', form).val();
2015-06-07 18:23:56 -07:00
ApiClient.updateNamedConfiguration("encoding", config).done(Dashboard.processServerConfigurationUpdateResult);
});
// Disable default form submission
return false;
}
2015-09-01 07:01:59 -07:00
$(document).on('pageinit', "#encodingSettingsPage", function () {
var page = this;
$('#btnSelectTranscodingTempPath', page).on("click.selectDirectory", function () {
2015-10-13 12:22:45 -07:00
require(['directorybrowser'], function (directoryBrowser) {
2015-10-13 12:22:45 -07:00
var picker = new directoryBrowser();
2015-10-13 12:22:45 -07:00
picker.show({
2015-10-13 12:22:45 -07:00
callback: function (path) {
2015-10-13 12:22:45 -07:00
if (path) {
$('#txtTranscodingTempPath', page).val(path);
}
picker.close();
},
2015-10-13 12:22:45 -07:00
header: Globalize.translate('HeaderSelectTranscodingPath'),
instruction: Globalize.translate('HeaderSelectTranscodingPathHelp')
});
});
});
2015-06-07 18:23:56 -07:00
$('.encodingSettingsForm').off('submit', onSubmit).on('submit', onSubmit);
2015-09-24 10:08:10 -07:00
}).on('pageshow', "#encodingSettingsPage", function () {
Dashboard.showLoadingMsg();
var page = this;
2014-12-21 12:40:37 -07:00
ApiClient.getNamedConfiguration("encoding").done(function (config) {
loadPage(page, config);
});
});
})(jQuery, document, window);