From 9f1bf05de76648ff8362ed81adab095bf181fe32 Mon Sep 17 00:00:00 2001 From: carykh Date: Thu, 11 Apr 2019 00:46:55 -0700 Subject: [PATCH] Fixed typo --- jumpcutter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jumpcutter.py b/jumpcutter.py index 235f93d..d78f731 100644 --- a/jumpcutter.py +++ b/jumpcutter.py @@ -54,7 +54,7 @@ parser.add_argument('--silent_speed', type=float, default=5.00, help="the speed parser.add_argument('--frame_margin', type=float, default=1, help="some silent frames adjacent to sounded frames are included to provide context. How many frames on either the side of speech should be included? That's this variable.") parser.add_argument('--sample_rate', type=float, default=44100, help="sample rate of the input and output videos") parser.add_argument('--frame_rate', type=float, default=30, help="frame rate of the input and output videos. optional... I try to find it out myself, but it doesn't always work.") -parser.add_argument('--frame_quality', type=int, default=3, help="quality of frames to be extracted from input video. 1 is highest, 5 is lowest, 3 is the default.") +parser.add_argument('--frame_quality', type=int, default=3, help="quality of frames to be extracted from input video. 1 is highest, 31 is lowest, 3 is the default.") args = parser.parse_args()