Changeset 14aae81 for python/aubio/task
- Timestamp:
- Jun 2, 2006, 7:23:29 PM (18 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
- File:
-
- 1 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)
Note: See TracChangeset
for help on using the changeset viewer.