- Timestamp:
- Aug 2, 2006, 1:24:50 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:
- 90bcdaa
- Parents:
- 778bc7a
- Location:
- python
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/gnuplot.py
r778bc7a r9bb8151 46 46 return time,data 47 47 48 def plot_audio(filenames, fileout=None, start=0, end=None, noaxis=None,xsize=1.,ysize=1.):49 g = gnuplot_ init(fileout)48 def plot_audio(filenames, outplot='', extension='', start=0, end=None, noaxis=None,xsize=1.,ysize=1.): 49 g = gnuplot_create(outplot, extension) 50 50 d = [] 51 51 todraw = len(filenames) -
python/aubioplot-audio
r778bc7a r9bb8151 28 28 options, args = parse_args() 29 29 30 if options.outplot: 31 extension = options.outplot.split('.')[-1] 32 outplot = '.'.join(options.outplot.split('.')[:-1]) 33 else: 34 extension = '' 35 outplot = None 36 30 37 aubio.gnuplot.plot_audio(options.filename.split(','), 31 fileout=options.outplot, 38 extension = extension, 39 outplot = outplot, 32 40 xsize=float(options.xsize), 33 41 ysize=float(options.ysize))
Note: See TracChangeset
for help on using the changeset viewer.