summaryrefslogtreecommitdiff
path: root/basetypes.py
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-10-29 12:30:48 +0100
committerJohn Glover <glover.john@gmail.com>2010-10-29 12:30:48 +0100
commit0e5d0c72ac003c9461d12a656caac7b8ad2d5222 (patch)
tree73cf6ff03c3589c03380c758436079108f842b3c /basetypes.py
parentb8e12a9abd9d15a55fca0fe50d93fa5ae3143b9a (diff)
downloadsimpl-0e5d0c72ac003c9461d12a656caac7b8ad2d5222.tar.gz
simpl-0e5d0c72ac003c9461d12a656caac7b8ad2d5222.tar.bz2
simpl-0e5d0c72ac003c9461d12a656caac7b8ad2d5222.zip
Moved dynamic frame size calculation to the PeakDetection base class
Diffstat (limited to 'basetypes.py')
-rw-r--r--basetypes.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/basetypes.py b/basetypes.py
index 28311ad..5f685d5 100644
--- a/basetypes.py
+++ b/basetypes.py
@@ -120,6 +120,7 @@ class PeakDetection(object):
def __init__(self):
self._sampling_rate = 44100
self._frame_size = 2048
+ self._static_frame_size = True
self._hop_size = 512
self._max_peaks = 100
self._window_type = "hamming"
@@ -177,6 +178,9 @@ class PeakDetection(object):
def set_window_size(self, window_size):
self._window_size = window_size
+ def get_next_frame_size(self):
+ return self._frame_size
+
def find_peaks_in_frame(self, frame):
"Find and return all spectral peaks in a given frame of audio"
current_peaks = []
@@ -189,6 +193,9 @@ class PeakDetection(object):
self.peaks = []
pos = 0
while pos < len(audio):
+ # get the next frame size
+ if not self._static_frame_size:
+ self.frame_size = self.get_next_frame_size()
# get the next frame
frame = audio[pos:pos+self.frame_size]
# pad if necessary