From 1d5853752d715fae4992afce8295b480f7444101 Mon Sep 17 00:00:00 2001 From: Zen <46526140+master-of-zen@users.noreply.github.com> Date: Thu, 9 Jul 2020 19:33:50 +0300 Subject: [PATCH] fix --- utils/arg_parse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/arg_parse.py b/utils/arg_parse.py index aee4b17..1c2c596 100755 --- a/utils/arg_parse.py +++ b/utils/arg_parse.py @@ -48,8 +48,8 @@ def arg_parsing(): # Boost parser.add_argument('--boost', help='Experimental feature, decrease CQ of clip based on brightness.' 'Darker = lower CQ', action='store_true') - parser.add_argument('--boost_range', '-bl', default=15, type=int, help='Range/strength of CQ change') - parser.add_argument('--boost_limit', '-br', default=10, type=int, help='CQ limit for boosting') + parser.add_argument('--boost_range', '-br', default=15, type=int, help='Range/strength of CQ change') + parser.add_argument('--boost_limit', '-bl', default=10, type=int, help='CQ limit for boosting') # Vmaf parser.add_argument('--vmaf', help='Calculating vmaf after encode', action='store_true')