diff options
author | Devaev Maxim <[email protected]> | 2021-05-19 17:05:45 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2021-05-19 17:05:45 +0300 |
commit | b66618f12d337bd6611923649b46996945ab7bbc (patch) | |
tree | 42918cc309f2ac5d133f5cedd21ed5e2dc208cdd /web/kvm/index.html | |
parent | d18c27744f5a076683c0101f14a8ce5a0ac4b671 (diff) |
h264 bitrate slider
Diffstat (limited to 'web/kvm/index.html')
-rw-r--r-- | web/kvm/index.html | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/web/kvm/index.html b/web/kvm/index.html index 5c580c6f..0b9f7c37 100644 --- a/web/kvm/index.html +++ b/web/kvm/index.html @@ -138,14 +138,21 @@ <td> <input class="slider" disabled type="range" id="stream-quality-slider"> </td> - <td class="value" id="stream-quality-value">80%</td> + <td class="value" id="stream-quality-value" style="min-width: 30px; max-width:30px"></td> + </tr> + <tr class="feature-disabled" id="stream-h264-bitrate"> + <td>H.264 kbps:</td> + <td> + <input class="slider" disabled type="range" id="stream-h264-bitrate-slider"> + </td> + <td class="value" id="stream-h264-bitrate-value" style="min-width: 30px; max-width:30px"></td> </tr> <tr> <td>Max FPS:</td> <td> <input class="slider" disabled type="range" id="stream-desired-fps-slider"> </td> - <td class="value" id="stream-desired-fps-value">0</td> + <td class="value" id="stream-desired-fps-value" style="min-width: 30px; max-width:30px"></td> </tr> <tr class="feature-disabled" id="stream-mode"> <td>Video mode:</td> |