Changeset 49e40cc for python/scripts/aubiocut
- Timestamp:
- Dec 8, 2013, 4:09:55 AM (11 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 403e9dd
- Parents:
- 074b41b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/scripts/aubiocut
r074b41b r49e40cc 16 16 parser.add_option("-i", "--input", action = "store", dest = "source_file", 17 17 help="input sound file to analyse", metavar = "<source_file>") 18 parser.add_option("- m","--method",18 parser.add_option("-O","--onset-method", 19 19 action="store", dest="onset_method", default='default', 20 20 metavar = "<onset_method>", … … 35 35 """ 36 36 # algorithm parameters 37 parser.add_option("- -samplerate",37 parser.add_option("-r", "--samplerate", 38 38 metavar = "<freq>", type='int', 39 39 action="store", dest="samplerate", default=0, … … 47 47 action="store", dest="hopsize", default=256, 48 48 help="overlap size [default=256]") 49 parser.add_option("-t","-- threshold",49 parser.add_option("-t","--onset-threshold", 50 50 metavar = "<value>", type="float", 51 51 action="store", dest="threshold", default=0.3,
Note: See TracChangeset
for help on using the changeset viewer.