1
0
mirror of https://github.com/taigrr/jumpcutter synced 2025-01-18 04:43:13 -08:00

Fixed typo

This commit is contained in:
carykh 2019-04-11 00:46:55 -07:00 committed by GitHub
parent 3cbac4c37c
commit 9f1bf05de7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()