Skip to content

Commit 83ddac1

Browse files
author
Clement Champetier
committed
pyrewrap app: fix help of command line options
1 parent 6216ef3 commit 83ddac1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/pyRewrap/pyrewrap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# requirements
1919
parser.add_argument('inputFileName', type=str, help='It could be any video file. Support file without extension.')
2020
# 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).")
2222
parser.add_argument("-c", "--format", dest="format", type=str, default="mov", help="Specify the output format.")
2323
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).")
2424
# Parse command-line
@@ -37,7 +37,7 @@
3737
# requirements
3838
parser.add_option("-i", "--inputFile", dest='inputFileName', type="string", help='It could be any video file. Support file without extension.')
3939
# 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).")
4141
parser.add_option("-c", "--format", dest="format", type="string", default="mov", help="Specify the output format.")
4242
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).")
4343
# Parse command-line

0 commit comments

Comments
 (0)