1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
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 14:40:37 -05:00
$('#chkEnableDebugEncodingLogging', page).checked(config.EnableDebugLogging).checkboxradio('refresh');
$('#chkEnableThrottle', page).checked(config.EnableThrottling).checkboxradio('refresh');
2015-06-07 21:23:56 -04:00
$('.radioEncodingQuality', page).each(function () {
2014-12-26 12:45:06 -05:00
this.checked = config.EncodingQuality == this.value;
}).checkboxradio('refresh');
2015-06-07 21:23:56 -04:00
2015-11-26 23:33:20 -05:00
$('#selectVideoDecoder', page).val(config.HardwareAccelerationType);
2015-09-03 13:01:51 -04:00
$('#selectThreadCount', page).val(config.EncodingThreadCount);
2014-04-18 13:16:25 -04:00
$('#txtDownMixAudioBoost', page).val(config.DownMixAudioBoost);
$('#txtTranscodingTempPath', page).val(config.TranscodingTempPath || '');
2014-04-18 13:16:25 -04:00
Dashboard.hideLoadingMsg();
}
2015-06-07 21:23:56 -04:00
function onSubmit() {
Dashboard.showLoadingMsg();
var form = this;
2015-12-14 10:43:03 -05:00
ApiClient.getNamedConfiguration("encoding").then(function (config) {
2015-06-07 21:23:56 -04:00
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 21:52:11 -04:00
config.EncodingThreadCount = $('#selectThreadCount', form).val();
2015-11-26 23:33:20 -05:00
config.HardwareAccelerationType = $('#selectVideoDecoder', form).val();
2015-06-07 21:23:56 -04:00
2015-12-14 10:43:03 -05:00
ApiClient.updateNamedConfiguration("encoding", config).then(Dashboard.processServerConfigurationUpdateResult);
2015-06-07 21:23:56 -04:00
});
// Disable default form submission
return false;
}
2015-09-01 10:01:59 -04:00
$(document).on('pageinit', "#encodingSettingsPage", function () {
var page = this;
$('#btnSelectTranscodingTempPath', page).on("click.selectDirectory", function () {
2015-10-13 15:22:45 -04:00
require(['directorybrowser'], function (directoryBrowser) {
2015-10-13 15:22:45 -04:00
var picker = new directoryBrowser();
2015-10-13 15:22:45 -04:00
picker.show({
2015-10-13 15:22:45 -04:00
callback: function (path) {
2015-10-13 15:22:45 -04:00
if (path) {
$('#txtTranscodingTempPath', page).val(path);
}
picker.close();
},
2015-10-13 15:22:45 -04:00
header: Globalize.translate('HeaderSelectTranscodingPath'),
instruction: Globalize.translate('HeaderSelectTranscodingPathHelp')
});
});
});
2015-06-07 21:23:56 -04:00
$('.encodingSettingsForm').off('submit', onSubmit).on('submit', onSubmit);
2015-09-24 13:08:10 -04:00
}).on('pageshow', "#encodingSettingsPage", function () {
Dashboard.showLoadingMsg();
var page = this;
2015-12-14 10:43:03 -05:00
ApiClient.getNamedConfiguration("encoding").then(function (config) {
loadPage(page, config);
});
});
})(jQuery, document, window);