summaryrefslogtreecommitdiff
path: root/mq.py
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-12-24 12:37:39 +0000
committerJohn Glover <glover.john@gmail.com>2010-12-24 12:37:39 +0000
commit0aaf61396643d7884b792b6d1a053c7dae7390b2 (patch)
tree6e7fafe7ecf7a318cdbcc0129f3f6b0dc39fec77 /mq.py
parentc0d481904d7a12065f5a29b631326924dc674c99 (diff)
downloadsimpl-0aaf61396643d7884b792b6d1a053c7dae7390b2.tar.gz
simpl-0aaf61396643d7884b792b6d1a053c7dae7390b2.tar.bz2
simpl-0aaf61396643d7884b792b6d1a053c7dae7390b2.zip
Updated MQ and SndObj peak detection and partial tracking to simpl 0.2
Diffstat (limited to 'mq.py')
-rw-r--r--mq.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mq.py b/mq.py
index 537b383..8640eab 100644
--- a/mq.py
+++ b/mq.py
@@ -144,7 +144,7 @@ class MQPeakDetection(simpl.PeakDetection):
self._max_peaks peaks."""
self._current_peaks = []
# fft of frame
- f = np.fft.rfft(frame * self._window)
+ f = np.fft.rfft(frame.audio * self._window)
spectrum = abs(f)
# find all peaks in the spectrum
prev_mag = np.abs(spectrum[0])