diff options
author | Maxim Devaev <[email protected]> | 2021-11-25 06:37:32 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2021-11-25 06:37:32 +0300 |
commit | b27b4f14919ef45195b4378f78a09a9983e3fd53 (patch) | |
tree | bfb2f94baf00283ae06188a9c758392067761fc7 /kvmd/apps | |
parent | 1551f34bf67c0989ca1c7658adb4996c081bbd31 (diff) |
changed h264 range to actual values
Diffstat (limited to 'kvmd/apps')
-rw-r--r-- | kvmd/apps/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kvmd/apps/__init__.py b/kvmd/apps/__init__.py index ca9bf374..6d23585d 100644 --- a/kvmd/apps/__init__.py +++ b/kvmd/apps/__init__.py @@ -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": { |