Changeset a3254df for python/aubio


Ignore:
Timestamp:
Feb 17, 2006, 12:29:17 PM (19 years ago)
Author:
Paul Brossier <piem@altern.org>
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
Message:

fixed results/data fan out, update onset template
fixed results/data fan out, update onset template

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/aubio/bench/node.py

    rb47c626 ra3254df  
    8181        """ execute action(respath) an all subdirectories in respath """
    8282        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)
    8585        else:
    8686                for i in listfiles:
     
    153153                self.orig, self.missed, self.merged, self.expc, \
    154154                        self.bad, self.doubled = 0, 0, 0, 0, 0, 0
     155                self.l , self.mean = [], 0
    155156                act_on_files(self.file_exec,self.sndlist,self.reslist, \
    156157                        suffix='',filter=sndfile_filter)
Note: See TracChangeset for help on using the changeset viewer.