# HG changeset patch # User cannam # Date 1247750360 0 # Node ID 535d559300dc24f6b2e6715ed1b77db12877214e # Parent 1ae350e97f933f527064a7c97227ecc3fd39f365 * fix incorrect default values for parameters (must match declared defaults) diff -r 1ae350e97f93 -r 535d559300dc Example VamPy plugins/PySpectralCentroid.py --- a/Example VamPy plugins/PySpectralCentroid.py Tue Jul 14 15:54:03 2009 +0000 +++ b/Example VamPy plugins/PySpectralCentroid.py Thu Jul 16 13:19:20 2009 +0000 @@ -11,7 +11,7 @@ self.m_blockSize = 0 self.m_channels = 0 self.previousSample = 0.0 - self.threshold = 0.00 + self.threshold = 0.05 def initialise(self,channels,stepSize,blockSize,inputSampleRate): self.m_channels = channels diff -r 1ae350e97f93 -r 535d559300dc Example VamPy plugins/PyZeroCrossing.py --- a/Example VamPy plugins/PyZeroCrossing.py Tue Jul 14 15:54:03 2009 +0000 +++ b/Example VamPy plugins/PyZeroCrossing.py Thu Jul 16 13:19:20 2009 +0000 @@ -9,7 +9,7 @@ self.m_blockSize = 0 self.m_channels = 0 self.previousSample = 0.0 - self.threshold = 0.01 + self.threshold = 0.005 def initialise(self,channels,stepSize,blockSize,inputSampleRate): self.m_channels = channels