App ordering support for legacy clients
This commit is contained in:
@@ -242,6 +242,8 @@
|
||||
"qp": 28,
|
||||
"min_threads": 2,
|
||||
"limit_framerate": "enabled",
|
||||
"envvar_compatibility_mode": "disabled",
|
||||
"legacy_ordering": "disabled",
|
||||
"hevc_mode": 0,
|
||||
"av1_mode": 0,
|
||||
"capture": "",
|
||||
|
||||
@@ -5,8 +5,7 @@ import Checkbox from "../../Checkbox.vue";
|
||||
|
||||
const props = defineProps([
|
||||
'platform',
|
||||
'config',
|
||||
'global_prep_cmd'
|
||||
'config'
|
||||
])
|
||||
|
||||
const config = ref(props.config)
|
||||
@@ -51,6 +50,14 @@ const config = ref(props.config)
|
||||
default="false"
|
||||
></Checkbox>
|
||||
|
||||
<!-- Legacy ordering -->
|
||||
<Checkbox class="mb-3"
|
||||
id="legacy_ordering"
|
||||
locale-prefix="config"
|
||||
v-model="config.legacy_ordering"
|
||||
default="false"
|
||||
></Checkbox>
|
||||
|
||||
<!-- HEVC Support -->
|
||||
<div class="mb-3">
|
||||
<label for="hevc_mode" class="form-label">{{ $t('config.hevc_mode') }}</label>
|
||||
|
||||
@@ -304,6 +304,8 @@
|
||||
"lan_encryption_mode_1": "Enabled for supported clients",
|
||||
"lan_encryption_mode_2": "Required for all clients",
|
||||
"lan_encryption_mode_desc": "This determines when encryption will be used when streaming over your local network. Encryption can reduce streaming performance, particularly on less powerful hosts and clients.",
|
||||
"legacy_ordering": "App ordering for legacy clients",
|
||||
"legacy_ordering_desc": "Enable ordering support workaround for legacy clients. Can cause issues with clients or scripts that can't handle UTF8 correctly.",
|
||||
"limit_framerate": "Limit capture framerate",
|
||||
"limit_framerate_desc": "Limit the framerate being captured to client requested framerate. May not run at full framerate if vsync is enabled and display refreshrate does not match requested framerate. Could cause lag on some clients if disabled.",
|
||||
"locale": "Locale",
|
||||
|
||||
@@ -299,6 +299,8 @@
|
||||
"lan_encryption_mode_1": "为支持的客户端启用",
|
||||
"lan_encryption_mode_2": "强制所有客户端使用",
|
||||
"lan_encryption_mode_desc": "这将决定在本地网络上进行流媒体传输时何时使用加密。加密会降低流媒体性能,尤其是在功能较弱的主机和客户端上。",
|
||||
"legacy_ordering": "过时客户端 APP 排序支持",
|
||||
"legacy_ordering_desc": "启用对过时客户端的 APP 排序支持。可能在某些无法正确处理 UTF8 编码的客户端/脚本上导致问题。",
|
||||
"limit_framerate": "限制捕获帧率",
|
||||
"limit_framerate_desc": "将捕获帧率限制到客户端请求的帧率。当启用垂直同步且显示器刷新率与客户端刷新率不匹配时可能会跑不满请求的帧率。若禁用,可能会在某些客户端上导致延迟。",
|
||||
"locale": "本地化",
|
||||
|
||||
Reference in New Issue
Block a user