Changeset 13340a68
- Timestamp:
- Jun 3, 2005, 3:00:12 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:
- 97b8c3d
- Parents:
- 8e8bc50
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubiocut
r8e8bc50 r13340a68 65 65 action="store_true", dest="derivate", default=False, 66 66 help="derivate onset detection function") 67 parser.add_option("-S","--silencecut", 68 action="store_true", dest="silencecut", default=False, 69 help="outputs silence locations") 67 70 # to be implemented 71 68 72 parser.add_option("-z","--zerocross", 69 73 action="store_true", dest="zerocross", default=False, … … 108 112 #onsets = getbeats(filename,threshold,silence,mode=options.mode) 109 113 exit("not implemented yet") 114 elif options.silencecut: 115 onsets = getsilences(filename,hopsize=hopsize,silence=silence) 110 116 elif options.plot: 111 117 onsets, ofunc = getonsets(filename,threshold,silence,
Note: See TracChangeset
for help on using the changeset viewer.