- Timestamp:
- Aug 2, 2006, 4:39:38 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:
- e5cc1ea
- Parents:
- 9bb8151
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubioplot-audio
r9bb8151 r90bcdaa 13 13 parser.add_option("-x","--xsize", 14 14 action="store", dest="xsize", default=1., 15 help="define xsize for plot")15 type='float',help="define xsize for plot") 16 16 parser.add_option("-y","--ysize", 17 17 action="store", dest="ysize", default=1., 18 help="define ysize for plot")18 type='float',help="define ysize for plot") 19 19 parser.add_option("-O","--outplot", 20 20 action="store", dest="outplot", default=None, … … 35 35 outplot = None 36 36 37 aubio.gnuplot.plot_audio(options.filename.split(','), 37 aubio.gnuplot.plot_audio(options.filename.split(','), 38 38 extension = extension, 39 39 outplot = outplot, 40 xsize=float(options.xsize), 41 ysize=float(options.ysize)) 40 g, 41 xsize=options.xsize, 42 ysize=options.ysize)
Note: See TracChangeset
for help on using the changeset viewer.