Skip to content

Commit

Permalink
Changed default speed and pitch values
Browse files Browse the repository at this point in the history
Output will be slower and lower pitched using default values
  • Loading branch information
rnnh authored Oct 10, 2021
1 parent 5e3ffbf commit fdb54ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vaporiser.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@
dest = "speed_ratio",
help = "Ratio of new playback speed to old speed.",
type = float,
default = 0.85)
default = 0.75)

audio_arguments.add_argument("-p", "--pitch",
dest = "pitch_shift",
help = "Pitch shift (100ths of a semitone).",
type = float,
default = -50)
default = -75)

audio_arguments.add_argument("-l", "--lowpass",
dest = "lowpass_cutoff",
Expand Down

0 comments on commit fdb54ab

Please sign in to comment.