feat(ddprobe): allow to manually specify gpu preference (#3521)
This commit is contained in:
@@ -169,6 +169,7 @@
|
||||
"virtual_sink": "",
|
||||
"install_steam_audio_drivers": "enabled",
|
||||
"adapter_name": "",
|
||||
"gpu_preference": -1,
|
||||
"output_name": "",
|
||||
"dd_configuration_option": "verify_only",
|
||||
"dd_resolution_option": "auto",
|
||||
|
||||
@@ -69,6 +69,18 @@ const config = ref(props.config)
|
||||
:config="config"
|
||||
/>
|
||||
|
||||
<PlatformLayout :platform="platform">
|
||||
<template #windows>
|
||||
<!-- GPU Preference -->
|
||||
<div class="mb-3">
|
||||
<label for="gpu_preference" class="form-label">{{ $t('config.gpu_preference') }}</label>
|
||||
<input type="number" class="form-control" id="gpu_preference" placeholder="-1" min="-1"
|
||||
v-model="config.gpu_preference" />
|
||||
<div class="form-text">{{ $t('config.gpu_preference_desc') }}</div>
|
||||
</div>
|
||||
</template>
|
||||
</PlatformLayout>
|
||||
|
||||
<DisplayOutputSelector
|
||||
:platform="platform"
|
||||
:config="config"
|
||||
|
||||
@@ -108,7 +108,7 @@ const config = ref(props.config)
|
||||
<label for="dd_config_revert_delay" class="form-label">
|
||||
{{ $t('config.dd_config_revert_delay') }}
|
||||
</label>
|
||||
<input type="text" class="form-control" id="dd_config_revert_delay" placeholder="3000"
|
||||
<input type="number" class="form-control" id="dd_config_revert_delay" placeholder="3000" min="0"
|
||||
v-model="config.dd_config_revert_delay" />
|
||||
<div class="form-text">
|
||||
{{ $t('config.dd_config_revert_delay_desc') }}
|
||||
|
||||
@@ -186,6 +186,8 @@
|
||||
"fec_percentage": "FEC Percentage",
|
||||
"fec_percentage_desc": "Percentage of error correcting packets per data packet in each video frame. Higher values can correct for more network packet loss, but at the cost of increasing bandwidth usage.",
|
||||
"ffmpeg_auto": "auto -- let ffmpeg decide (default)",
|
||||
"gpu_preference": "GPU Preference",
|
||||
"gpu_preference_desc": "Specify the GPU preference for the Sunshine process. If set to negative number (-1 by default), Sunshine will try to detect the best GPU for the streamed display, but if it fails you will get a black screen. Setting it to 0 will allow Windows to try and select the best GPU. Setting it to 1 and above will prioritize the GPU that matches this number (the number has to be guessed, but it starts at 1 and increases).",
|
||||
"file_apps": "Apps File",
|
||||
"file_apps_desc": "The file where current apps of Sunshine are stored.",
|
||||
"file_state": "State File",
|
||||
|
||||
Reference in New Issue
Block a user