mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-29 18:32:38 +00:00
Change text input to select (#1067)
This commit is contained in:
parent
5cdc0accad
commit
8162d5f0d0
@ -791,12 +791,10 @@ sw_preset
|
||||
ultrafast fastest
|
||||
superfast
|
||||
veryfast
|
||||
superfast
|
||||
faster
|
||||
fast
|
||||
medium
|
||||
slow
|
||||
slow
|
||||
slower
|
||||
veryslow slowest
|
||||
========= ===========
|
||||
|
@ -700,32 +700,33 @@
|
||||
<div v-if="currentTab === 'sw'" class="config-page">
|
||||
<div class="mb-3">
|
||||
<label for="sw_preset" class="form-label">SW Presets</label>
|
||||
<input
|
||||
class="form-control"
|
||||
id="sw_preset"
|
||||
placeholder="superfast"
|
||||
v-model="config.sw_preset"
|
||||
/>
|
||||
<select id="sw_preset" class="form-select" v-model="config.sw_preset">
|
||||
<option value="ultrafast">ultrafast</option>
|
||||
<option value="superfast">superfast (default)</option>
|
||||
<option value="veryfast">veryfast</option>
|
||||
<option value="faster">faster</option>
|
||||
<option value="fast">fast</option>
|
||||
<option value="medium">medium</option>
|
||||
<option value="slow">slow</option>
|
||||
<option value="slower">slower</option>
|
||||
<option value="veryslow">veryslow</option>
|
||||
</select>
|
||||
<div class="form-text">
|
||||
Available Values: ultrafast, superfast, veryfast, faster, fast, medium, slow, slower, veryslow
|
||||
Optimize the trade-off between encoding speed (encoded frames per second) and compression efficiency (quality per bit in the bitstream). Defaults to superfast.
|
||||
</div>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="sw_tune" class="form-label">SW Tune</label>
|
||||
<input
|
||||
class="form-control"
|
||||
id="sw_tune"
|
||||
placeholder="zerolatency"
|
||||
v-model="config.sw_tune"
|
||||
/>
|
||||
<select id="sw_tune" class="form-select" v-model="config.sw_tune">
|
||||
<option value="film">film -- use for high quality movie content; lowers deblocking</option>
|
||||
<option value="animation">animation -- good for cartoons; uses higher deblocking and more reference frames</option>
|
||||
<option value="grain">grain -- preserves the grain structure in old, grainy film material</option>
|
||||
<option value="stillimage">stillimage -- good for slideshow-like content</option>
|
||||
<option value="fastdecode">fastdecode -- allows faster decoding by disabling certain filters</option>
|
||||
<option value="zerolatency">zerolatency -- good for fast encoding and low-latency streaming (default)</option>
|
||||
</select>
|
||||
<div class="form-text">
|
||||
Available Tune settings: <br>
|
||||
film - use for high quality movie content; lowers deblocking<br>
|
||||
animation - good for cartoons; uses higher deblocking and more reference frames<br>
|
||||
grain - preserves the grain structure in old, grainy film material<br>
|
||||
stillimage - good for slideshow-like content<br>
|
||||
fastdecode - allows faster decoding by disabling certain filters<br>
|
||||
zerolatency - good for fast encoding and low-latency streaming<br>
|
||||
Tuning options, which are applied after the preset. Defaults to zerolatency.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -929,6 +930,8 @@
|
||||
"qsv_coder": "auto",
|
||||
"qsv_preset": "medium",
|
||||
"resolutions": "[352x240,480x360,858x480,1280x720,1920x1080,2560x1080,3440x1440,1920x1200,3860x2160,3840x1600]",
|
||||
"sw_preset": "superfast",
|
||||
"sw_tune": "zerolatency",
|
||||
"upnp": "disabled",
|
||||
"vt_coder": "auto",
|
||||
"vt_realtime": "enabled",
|
||||
|
Loading…
x
Reference in New Issue
Block a user