Browse Source

Update rotate help option command line option for better explanation of why this feature exist on first place

master
kira1752 5 years ago
parent
commit
c7f64f7dea
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      simtsou.py

+ 1
- 1
simtsou.py View File

@ -9,7 +9,7 @@ def parser():
# Specified command options and its helps message # Specified command options and its helps message
parser.add_argument ("INPUT_FILE", help="Name of the image to be converted.") parser.add_argument ("INPUT_FILE", help="Name of the image to be converted.")
parser.add_argument ("-r", "--rotate", help="Rotate image 90 degrees.", action='store_true')
parser.add_argument ("-r", "--rotate", help="Rotate image 90 degrees for more sexy spectograph looks and sound", action='store_true')
parser.add_argument ("-i", "--invert", help="Invert image colors.", action='store_true') parser.add_argument ("-i", "--invert", help="Invert image colors.", action='store_true')
parser.add_argument ("-o", "--output", help="Name of the output wav file. Default value: out.wav).") parser.add_argument ("-o", "--output", help="Name of the output wav file. Default value: out.wav).")
parser.add_argument ("-b", "--bottom", help="Bottom frequency range. Default value: 200.", type=int) parser.add_argument ("-b", "--bottom", help="Bottom frequency range. Default value: 200.", type=int)

Loading…
Cancel
Save