Changeset 427be71 for python/aubiocut
- Timestamp:
- Aug 14, 2005, 12:39:54 AM (19 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:
- a3e24ec
- Parents:
- b5aa063
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubiocut
rb5aa063 r427be71 52 52 action="store_true", dest="silencecut", default=False, 53 53 help="outputs silence locations") 54 # to be implemented55 56 54 parser.add_option("-z","--zerocross", 57 action="store_true", dest="zerocross", default=False, 58 help="NOT IMPLEMENTED zero crossing matching") 59 parser.add_option("-b","--beat", 60 action="store_true", dest="beat", default=False, 61 help="NOT IMPLEMENTED output beat locations") 55 action="store", dest="zerothres", default=0.008, 56 help="zero-crossing threshold for slicing [default=0.008]") 62 57 # plotting functions 63 58 parser.add_option("-p","--plot", … … 73 68 action="store_false", dest="verbose", default=False, 74 69 help="be quiet") 70 # to be implemented 71 parser.add_option("-b","--beat", 72 action="store_true", dest="beat", default=False, 73 help="NOT IMPLEMENTED output beat locations") 75 74 (options, args) = parser.parse_args() 76 75 if not options.filename: … … 134 133 135 134 if options.cut: 136 cutfile(filename,onsets, bufsize=bufsize,hopsize=hopsize)135 cutfile(filename,onsets,zerothres=zerothres,bufsize=bufsize,hopsize=hopsize)
Note: See TracChangeset
for help on using the changeset viewer.