mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 01:00:29 +08:00
changed h264 range to actual values
This commit is contained in:
parent
1551f34bf6
commit
b27b4f1491
@ -426,8 +426,8 @@ def _get_config_scheme() -> Dict:
|
||||
|
||||
"h264_bitrate": {
|
||||
"default": Option(0, type=valid_stream_h264_bitrate, if_empty=0, unpack_as="h264_bitrate"),
|
||||
"min": Option(100, type=valid_stream_h264_bitrate, unpack_as="h264_bitrate_min"),
|
||||
"max": Option(16000, type=valid_stream_h264_bitrate, unpack_as="h264_bitrate_max"),
|
||||
"min": Option(25, type=valid_stream_h264_bitrate, unpack_as="h264_bitrate_min"),
|
||||
"max": Option(25000, type=valid_stream_h264_bitrate, unpack_as="h264_bitrate_max"),
|
||||
},
|
||||
|
||||
"h264_gop": {
|
||||
|
||||
@ -77,7 +77,7 @@ def valid_stream_resolution(arg: Any) -> str:
|
||||
|
||||
|
||||
def valid_stream_h264_bitrate(arg: Any) -> int:
|
||||
return int(valid_number(arg, min=100, max=16000, name="stream H264 bitrate"))
|
||||
return int(valid_number(arg, min=25, max=25000, name="stream H264 bitrate"))
|
||||
|
||||
|
||||
def valid_stream_h264_gop(arg: Any) -> int:
|
||||
|
||||
@ -131,7 +131,7 @@ def test_fail__valid_stream_resolution(arg: Any) -> None:
|
||||
|
||||
|
||||
# =====
|
||||
@pytest.mark.parametrize("arg", ["100", " 16000 ", 5000])
|
||||
@pytest.mark.parametrize("arg", ["25", " 25000 ", 5000])
|
||||
def test_ok__valid_stream_h264_bitrate(arg: Any) -> None:
|
||||
value = valid_stream_h264_bitrate(arg)
|
||||
assert type(value) == int # pylint: disable=unidiomatic-typecheck
|
||||
|
||||
@ -432,7 +432,7 @@ export function Streamer() {
|
||||
});
|
||||
tools.slider.setOnUpDelayed($("stream-quality-slider"), 1000, (value) => __sendParam("quality", value));
|
||||
|
||||
tools.slider.setParams($("stream-h264-bitrate-slider"), 100, 16000, 100, 5000, function(value) {
|
||||
tools.slider.setParams($("stream-h264-bitrate-slider"), 25, 25000, 25, 5000, function(value) {
|
||||
$("stream-h264-bitrate-value").innerHTML = value;
|
||||
});
|
||||
tools.slider.setOnUpDelayed($("stream-h264-bitrate-slider"), 1000, (value) => __sendParam("h264_bitrate", value));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user