Changeset a3254df for python/aubio
- Timestamp:
- Feb 17, 2006, 12:29:17 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:
- 8b0595e
- Parents:
- b47c626
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/bench/node.py
rb47c626 ra3254df 81 81 """ execute action(respath) an all subdirectories in respath """ 82 82 if listres and len(listfiles) <= len(listres): 83 for i in listfiles:84 action( i,listres[i],**keywords)83 for i in range(len(listfiles)): 84 action(listfiles[i],listres[i],**keywords) 85 85 else: 86 86 for i in listfiles: … … 153 153 self.orig, self.missed, self.merged, self.expc, \ 154 154 self.bad, self.doubled = 0, 0, 0, 0, 0, 0 155 self.l , self.mean = [], 0 155 156 act_on_files(self.file_exec,self.sndlist,self.reslist, \ 156 157 suffix='',filter=sndfile_filter)
Note: See TracChangeset
for help on using the changeset viewer.