From: Paul Brossier Date: Thu, 16 Mar 2006 15:56:02 +0000 (+0000) Subject: add pitch buf, hop and yinthresh, no smoothing X-Git-Tag: bzr2git~730 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e2b1bdab843b47e50357cb722e56ada5c59dc2b9;p=aubio.git add pitch buf, hop and yinthresh, no smoothing add pitch buf, hop and yinthresh, no smoothing --- diff --git a/python/aubio/task/params.py b/python/aubio/task/params.py index 983dc20e..5bedc262 100644 --- a/python/aubio/task/params.py +++ b/python/aubio/task/params.py @@ -10,6 +10,8 @@ class taskparams(object): self.storefunc = False self.bufsize = 512 self.hopsize = 256 + self.pbufsize = 2048 + self.phopsize = 512 self.samplerate = 44100 self.tol = 0.05 self.mintol = 0.0 @@ -17,7 +19,8 @@ class taskparams(object): self.threshold = 0.1 self.onsetmode = 'dual' self.pitchmode = 'yin' - self.pitchsmooth = 7 + self.yinthresh = 0.2 + self.pitchsmooth = 0 self.pitchmin=100. self.pitchmax=1000. self.dcthreshold = -1.