2018-10-23 01:05:09 +03:00
|
|
|
define(["jQuery", "libraryMenu", "loading"], function($, libraryMenu, loading) {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
function loadPage(page, config) {
|
|
|
|
$("#txtRemoteClientBitrateLimit", page).val(config.RemoteClientBitrateLimit / 1e6 || ""), loading.hide()
|
|
|
|
}
|
|
|
|
|
|
|
|
function onSubmit() {
|
|
|
|
loading.show();
|
|
|
|
var form = this;
|
|
|
|
return ApiClient.getServerConfiguration().then(function(config) {
|
|
|
|
config.RemoteClientBitrateLimit = parseInt(1e6 * parseFloat($("#txtRemoteClientBitrateLimit", form).val() || "0")), ApiClient.updateServerConfiguration(config).then(Dashboard.processServerConfigurationUpdateResult)
|
|
|
|
}), !1
|
|
|
|
}
|
|
|
|
|
|
|
|
function getTabs() {
|
|
|
|
return [{
|
2019-08-16 00:25:31 -07:00
|
|
|
href: "encodingsettings.html",
|
|
|
|
name: Globalize.translate("Transcoding")
|
|
|
|
}, {
|
2018-10-23 01:05:09 +03:00
|
|
|
href: "playbackconfiguration.html",
|
|
|
|
name: Globalize.translate("TabResumeSettings")
|
|
|
|
}, {
|
|
|
|
href: "streamingsettings.html",
|
|
|
|
name: Globalize.translate("TabStreaming")
|
|
|
|
}]
|
|
|
|
}
|
2019-08-16 00:25:31 -07:00
|
|
|
|
2018-10-23 01:05:09 +03:00
|
|
|
$(document).on("pageinit", "#streamingSettingsPage", function() {
|
|
|
|
var page = this;
|
|
|
|
$("#btnSelectTranscodingTempPath", page).on("click.selectDirectory", function() {
|
|
|
|
require(["directorybrowser"], function(directoryBrowser) {
|
|
|
|
var picker = new directoryBrowser;
|
|
|
|
picker.show({
|
|
|
|
callback: function(path) {
|
|
|
|
path && $("#txtTranscodingTempPath", page).val(path), picker.close()
|
|
|
|
},
|
|
|
|
validateWriteable: !0,
|
|
|
|
header: Globalize.translate("HeaderSelectTranscodingPath"),
|
|
|
|
instruction: Globalize.translate("HeaderSelectTranscodingPathHelp")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}), $(".streamingSettingsForm").off("submit", onSubmit).on("submit", onSubmit)
|
|
|
|
}).on("pageshow", "#streamingSettingsPage", function() {
|
2019-08-16 00:25:31 -07:00
|
|
|
loading.show();
|
|
|
|
libraryMenu.setTabs("playback", 2, getTabs);
|
2018-10-23 01:05:09 +03:00
|
|
|
var page = this;
|
|
|
|
ApiClient.getServerConfiguration().then(function(config) {
|
|
|
|
loadPage(page, config)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
});
|