- Timestamp:
- Dec 13, 2005, 6:51:59 AM (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:
- 0eb4025
- Parents:
- f985cd6
- Location:
- python/aubio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/bench/node.py
rf985cd6 r2bd1a2a 24 24 def list_wav_files(datapath,maxdepth=1): 25 25 return list_files(datapath, filter="f -name '*.wav' -maxdepth %d"%maxdepth) 26 27 def list_snd_files(datapath,maxdepth=1): 28 return list_files(datapath, filter="f -name '*.wav' -o -name '*.aif' -maxdepth %d"%maxdepth) 26 29 27 30 def list_dirs(datapath): -
python/aubio/gnuplot.py
rf985cd6 r2bd1a2a 68 68 g.gnuplot('unset multiplot;') 69 69 70 def downsample_audio(time,data,maxpoints=10000): 71 """ create gnuplot plot from an audio file """ 72 import numarray 73 length = len(time) 74 downsample = length/maxpoints 75 if downsample == 0: downsample = 1 76 x = numarray.array(time).resize(length)[0:-1:downsample] 77 y = numarray.array(data).resize(length)[0:-1:downsample] 78 return x,y 79 70 80 def make_audio_plot(time,data,maxpoints=10000): 71 81 """ create gnuplot plot from an audio file """ … … 107 117 # check if datafile exists truth 108 118 datafile = filename.replace('.wav','.txt') 119 if datafile == filename: datafile = "" 109 120 if not os.path.isfile(datafile): 110 121 title = "truth file not found" … … 177 188 # check if ground truth exists 178 189 datafile = filename.replace('.wav','.txt') 190 if datafile == filename: datafile = "" 179 191 if not os.path.isfile(datafile): 180 192 title = "truth file not found"
Note: See TracChangeset
for help on using the changeset viewer.