File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ int main(int argc, char* argv[])
1919 << std::endl;
2020 std::cerr << " Examples:" << std::endl;
2121 std::cerr << " " << argv[0 ] << " input_dir output.mp4" << std::endl;
22- std::cerr << " " << argv[0 ] << " input_dir output.mp4 120 " << std::endl;
22+ std::cerr << " " << argv[0 ] << " input_dir output.mp4 180 " << std::endl;
2323 std::cerr << " " << argv[0 ] << " input_dir output.mp4 0 60 100" << std::endl;
2424 return 1 ;
2525 }
2626
2727 std::string inputDir = argv[1 ];
2828 std::string outputPath = argv[2 ];
29- int durationSeconds = (argc >= 4 ) ? std::stoi (argv[3 ]) : 120 ; // デフォルト120秒
29+ int durationSeconds = (argc >= 4 ) ? std::stoi (argv[3 ]) : 180 ; // デフォルト180秒
3030 int startSeconds = (argc >= 5 ) ? std::stoi (argv[4 ]) : 0 ; // デフォルト0秒から
3131 int endSeconds = (argc == 6 ) ? std::stoi (argv[5 ]) : -1 ; // デフォルト指定なし
3232
You can’t perform that action at this time.
0 commit comments