changed h264 range to actual values

This commit is contained in:
Maxim Devaev
2021-11-25 06:37:32 +03:00
parent 1551f34bf6
commit b27b4f1491
4 changed files with 5 additions and 5 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=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: