Ignore:
Timestamp:
Oct 8, 2009, 8:59:23 PM (15 years ago)
Author:
Paul Brossier <piem@piem.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:
8802f92
Parents:
61316a6
Message:

python/aubio: update to latest pitch prototypes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/aubio/task/pitch.py

    r61316a6 r3027c6e  
    88                task.__init__(self,input,params=params)
    99                self.shortlist = [0. for i in range(self.params.pitchsmooth)]
    10                 if self.params.pitchmode == 'yinfft':
    11                         yinthresh = self.params.yinfftthresh
    12                 elif self.params.pitchmode == 'yin':
    13                         yinthresh = self.params.yinthresh
    14                 else:
    15                         yinthresh = 0.
    16                 self.pitchdet  = pitchdetection(mode=get_pitch_mode(self.params.pitchmode),
     10                if self.params.pitchmode == 'yin':
     11                        tolerance = self.params.yinthresh
     12                elif self.params.pitchmode == 'yinfft':
     13                        tolerance = self.params.yinfftthresh
     14                else:
     15                        tolerance = 0.
     16                self.pitchdet   = pitchdetection(mode=get_pitch_mode(self.params.pitchmode),
    1717                        bufsize=self.params.bufsize,
    1818                        hopsize=self.params.hopsize,
     
    2020                        samplerate=self.srate,
    2121                        omode=self.params.omode,
    22                         yinthresh=yinthresh)
     22                        tolerance = tolerance)
    2323
    2424        def __call__(self):
Note: See TracChangeset for help on using the changeset viewer.