diff options
author | NeodarZ <neodarz@neodarz.net> | 2017-10-15 14:41:31 +0200 |
---|---|---|
committer | NeodarZ <neodarz@neodarz.net> | 2017-10-15 14:41:31 +0200 |
commit | 5741f7466bb0d64f00eda0b69579dc06813ee087 (patch) | |
tree | 7619b4b862ff444e586f34ed95aac968c228c70b | |
parent | cb93e8e1cdf735c5e7cd4dc65abe4c527d05ae3d (diff) | |
download | convert.py-5741f7466bb0d64f00eda0b69579dc06813ee087.tar.xz convert.py-5741f7466bb0d64f00eda0b69579dc06813ee087.zip |
Add information on supported format in help text
Diffstat (limited to '')
-rwxr-xr-x | convert.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ if len(sys.argv) >= 3 and len(sys.argv) <= 4: print("No such file or directory: '"+str(sourcedir)+"'") sys.exit() else: - print("Simple tool for convert mp4 file to mp3") + print("Simple tool for convert mp4, mkv or webm file to mp3") print("Usage:\nconvert.py [-n|-y] [SOURCE] [DESTINATION]") print(" -n ffmpeg: Do not overwrite output files, and exit immediately if a specified output file already exists. (Default option)") print(" -y ffmpeg: Overwrite output files without asking.") |