Changeset 14aae81
- Timestamp:
- Jun 2, 2006, 7:23:29 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:
- af35ed0
- Parents:
- 6b0ca87
- Location:
- python
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/task/beat.py
r6b0ca87 r14aae81 193 193 oplots.append(Gnuplot.Data(results,with='linespoints',title="auto")) 194 194 195 def plotplot(self, oplots,outplot=None):195 def plotplot(self,wplot,oplots,outplot=None,extension=None,xsize=1.,ysize=1.,spectro=False): 196 196 import Gnuplot 197 from aubio.gnuplot import gnuplot_ init, audio_to_array, make_audio_plot197 from aubio.gnuplot import gnuplot_create, audio_to_array, make_audio_plot 198 198 import re 199 199 # audio data … … 201 201 #f = make_audio_plot(time,data) 202 202 203 g = gnuplot_ init(outplot)203 g = gnuplot_create(outplot=outplot, extension=extension) 204 204 oplots = [Gnuplot.Data(self.gettruth(),with='linespoints',title="orig")] + oplots 205 205 g.plot(*oplots) -
python/aubiocut
r6b0ca87 r14aae81 134 134 lofunc.append(ofunc) 135 135 136 if options.plot: filetask.plot(onsets, ofunc, wplot, oplots, nplot=options.nplot) 136 if options.plot: 137 if options.beat: 138 filetask.plot(oplots, onsets) 139 else: 140 filetask.plot(onsets, ofunc, wplot, oplots, nplot=options.nplot) 137 141 138 142 if options.func:
Note: See TracChangeset
for help on using the changeset viewer.