From 9a434017e7dd2ad815d1b873120f0cbea29f21d9 Mon Sep 17 00:00:00 2001 From: ikinect Date: Wed, 7 Aug 2019 12:26:42 +0800 Subject: [PATCH] set main_autorun.py some default value --- main_autorun.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main_autorun.py b/main_autorun.py index 8fa19e4..210d045 100644 --- a/main_autorun.py +++ b/main_autorun.py @@ -185,7 +185,7 @@ if __name__ == "__main__": p.add_argument('--output-dir', required=True, action=fixPathAction, dest="output_dir", help="Output directory. This is where the extracted images will be stored.") # p.add_argument('--output-ext', dest="output_ext", default=None, help="Image format (extension) of output files.") p.add_argument('--output-ext', dest="output_ext", default='png', help="Image format (extension) of output files.") - # p.add_argument('--fps', type=int, dest="fps", default=None, help="How many frames of every second of the video will be extracted. 0 - full fps.") + # p.add_argument('--fps', type=int, dest="fps", default='png', help="How many frames of every second of the video will be extracted. 0 - full fps.") p.add_argument('--fps', type=int, dest="fps", default=0, help="How many frames of every second of the video will be extracted. 0 - full fps.") p.set_defaults(func=process_videoed_extract_video)