mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Force Transcoding for LiveTv Capability (#636)
* Update useredit.html * Update useredit.js * Update en-us.json * Update en-us.json * Update useredit.js * fix TV Shows to Square Tiles * Update homesections.js * Update src/strings/en-us.json Co-Authored-By: Vasily <JustAMan@users.noreply.github.com> Co-authored-by: Vasily <JustAMan@users.noreply.github.com>
This commit is contained in:
parent
18aa3e31e0
commit
75fc964b9e
3 changed files with 7 additions and 0 deletions
|
@ -97,6 +97,7 @@ define(["jQuery", "loading", "libraryMenu", "fnchecked"], function ($, loading,
|
|||
$("#chkEnableAudioPlaybackTranscoding", page).checked(user.Policy.EnableAudioPlaybackTranscoding);
|
||||
$("#chkEnableVideoPlaybackTranscoding", page).checked(user.Policy.EnableVideoPlaybackTranscoding);
|
||||
$("#chkEnableVideoPlaybackRemuxing", page).checked(user.Policy.EnablePlaybackRemuxing);
|
||||
$("#chkForceRemoteSourceTranscoding", page).checked(user.Policy.ForceRemoteSourceTranscoding);
|
||||
$("#chkRemoteAccess", page).checked(null == user.Policy.EnableRemoteAccess || user.Policy.EnableRemoteAccess);
|
||||
$("#chkEnableSyncTranscoding", page).checked(user.Policy.EnableSyncTranscoding);
|
||||
$("#chkEnableConversion", page).checked(user.Policy.EnableMediaConversion || false);
|
||||
|
@ -128,6 +129,7 @@ define(["jQuery", "loading", "libraryMenu", "fnchecked"], function ($, loading,
|
|||
user.Policy.EnableAudioPlaybackTranscoding = $("#chkEnableAudioPlaybackTranscoding", page).checked();
|
||||
user.Policy.EnableVideoPlaybackTranscoding = $("#chkEnableVideoPlaybackTranscoding", page).checked();
|
||||
user.Policy.EnablePlaybackRemuxing = $("#chkEnableVideoPlaybackRemuxing", page).checked();
|
||||
user.Policy.ForceRemoteSourceTranscoding = $("#chkForceRemoteSourceTranscoding", page).checked();
|
||||
user.Policy.EnableContentDownloading = $("#chkEnableDownloading", page).checked();
|
||||
user.Policy.EnableSyncTranscoding = $("#chkEnableSyncTranscoding", page).checked();
|
||||
user.Policy.EnableMediaConversion = $("#chkEnableConversion", page).checked();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue