max h264 kbps is 2000

This commit is contained in:
Maxim Devaev
2022-03-15 19:25:12 +03:00
parent 9346169271
commit a140f11b1b
4 changed files with 4 additions and 4 deletions

View File

@@ -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=25, max=25000, name="stream H264 bitrate"))
return int(valid_number(arg, min=25, max=20000, name="stream H264 bitrate"))
def valid_stream_h264_gop(arg: Any) -> int: