|
18 | 18 | # requirements
|
19 | 19 | parser.add_argument('inputFileName', type=str, help='It could be any video file. Support file without extension.')
|
20 | 20 | # options
|
21 |
| - parser.add_argument("-o", "--outputFile", dest="outputFileName", type=str, default="output.mov", help="Set the output filename (thumbnail.jpg by default). Must be with jpg extension!") |
| 21 | + parser.add_argument("-o", "--outputFile", dest="outputFileName", type=str, default="output.mov", help="Set the output filename (output.mov by default).") |
22 | 22 | parser.add_argument("-c", "--format", dest="format", type=str, default="mov", help="Specify the output format.")
|
23 | 23 | parser.add_argument("-f", "--faststart", dest="faststart", action="store_true", default=False, help="Specify if the faststart option must be apply during rewrapping process (warning: 'mov' specific option).")
|
24 | 24 | # Parse command-line
|
|
37 | 37 | # requirements
|
38 | 38 | parser.add_option("-i", "--inputFile", dest='inputFileName', type="string", help='It could be any video file. Support file without extension.')
|
39 | 39 | # options
|
40 |
| - parser.add_option("-o", "--outputFile", dest="outputFileName", type="string", default="output.mov", help="Set the output filename (thumbnail.jpg by default). Must be with jpg extension!") |
| 40 | + parser.add_option("-o", "--outputFile", dest="outputFileName", type="string", default="output.mov", help="Set the output filename (output.mov by default).") |
41 | 41 | parser.add_option("-c", "--format", dest="format", type="string", default="mov", help="Specify the output format.")
|
42 | 42 | parser.add_option("-f", "--faststart", dest="faststart", action="store_true", default=False, help="Specify if the faststart option must be apply during rewrapping process (warning: 'mov' specific option).")
|
43 | 43 | # Parse command-line
|
|
0 commit comments