Changeset 83ff0ab for python/aubiocut
- Timestamp:
- Feb 26, 2006, 6:35:16 PM (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:
- d3efa4e
- Parents:
- 84e80a1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubiocut
r84e80a1 r83ff0ab 29 29 action="store", dest="threshold", default=0.650, 30 30 help="onset peak picking threshold [default=0.650]") 31 parser.add_option("-C","--dcthreshold", 32 action="store", dest="dcthreshold", default=-1., 33 help="onset peak picking DC component [default=-1.]") 31 34 parser.add_option("-s","--silence", 32 35 action="store", dest="silence", default=-70, … … 59 62 action="store_true", dest="plot", default=False, 60 63 help="draw plot") 64 parser.add_option("-f","--function", 65 action="store_true", dest="func", default=False, 66 help="print detection function") 67 parser.add_option("-n","--no-onsets", 68 action="store_true", dest="nplot", default=False, 69 help="plot only detection functions") 61 70 parser.add_option("-O","--outplot", 62 71 action="store", dest="outplot", default=None, … … 85 94 params.bufsize = int(options.bufsize) 86 95 params.threshold = float(options.threshold) 96 params.dcthreshold = float(options.dcthreshold) 87 97 params.zerothres = float(options.zerothres) 88 98 params.silence = float(options.silence) 89 99 params.mintol = float(options.mintol) 100 params.verbose = options.verbose 90 101 # default take back system delay 91 if options.delay: delay = float(options.delay) 92 else: delay = 3./params.step 102 if options.delay: params.delay = int(float(options.delay)/params.step) 93 103 104 dotask = taskonset 105 if options.beat: 106 dotask = taskbeat 107 elif options.silencecut: 108 dotask = tasksilence 109 elif options.plot or options.func: 110 params.storefunc=True 111 else: 112 params.storefunc=False 94 113 95 114 lonsets, lofunc = [], [] 115 wplot,oplots = [],[] 96 116 modes = options.mode.split(',') 97 117 for i in range(len(modes)): 98 99 118 params.onsetmode = modes[i] 100 dotask = taskonset101 if options.beat:102 dotask = taskbeat103 elif options.silencecut:104 dotask = tasksilence105 elif options.plot:106 params.storefunc=True107 else:108 params.storefunc=False109 119 filetask = dotask(filename,params=params) 110 120 onsets = filetask.compute_all() 121 122 #lonsets.append(onsets) 111 123 if not options.silencecut: 112 124 ofunc = filetask.ofunc 113 #onsets, ofunc = getonsets(filename,threshold,silence,114 # mode=mode[i],localmin=options.localmin,115 # derivate=options.derivate,116 # bufsize=bufsize,hopsize=hopsize,storefunc=True)117 118 # take back system delay119 if delay != 0:120 for each in range(len(onsets)):121 onsets[each] = onsets[each][0] - delay*params.step122 123 # prune doubled124 params.mintol *= params.step125 if params.mintol > 0:126 last = -2*params.mintol127 newonsets = []128 for new in onsets:129 if (new - last > params.mintol):130 newonsets.append(new)131 last = new132 onsets = newonsets133 134 lonsets.append(onsets)135 if not options.silencecut:136 125 lofunc.append(ofunc) 137 126 138 # print times in second 139 if options.verbose: 140 #print modes[i] 141 for i in range(len(onsets)): 142 print onsets[i]*params.step 127 if options.plot: filetask.plot(onsets, ofunc, wplot, oplots, nplot=options.nplot) 143 128 144 if options.plot: 145 filetask.plot(onsets, ofunc) 146 filetask.plotplot(outplot=options.outplot) 129 if options.func: 130 for i in ofunc: 131 print i 132 133 if options.plot: filetask.plotplot(wplot, oplots, outplot=options.outplot) 147 134 148 135 if options.cut:
Note: See TracChangeset
for help on using the changeset viewer.