From ce65c30264be9683dd3a59b35730d2f31e02d37f Mon Sep 17 00:00:00 2001 From: John Glover Date: Thu, 21 Oct 2010 13:39:28 +0100 Subject: Changed from floats to doubles in the C/C++ code, makes Python integration a bit easier. Fixed a bug that would cause SndObjSynthesis to crash if peak values were floats. --- basetypes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'basetypes.py') diff --git a/basetypes.py b/basetypes.py index 3a9c87e..b2f0ae8 100644 --- a/basetypes.py +++ b/basetypes.py @@ -124,6 +124,7 @@ class PeakDetection(object): self._max_peaks = 100 self._window_type = "hamming" self._window_size = 2048 + self._min_peak_separation = 1.0 # in Hz self.peaks = [] # properties @@ -293,7 +294,7 @@ class Synthesis(object): def synth(self, partials): "Synthesise audio from the given partials" - audio_out = np.array([], dtype=np.float32) + audio_out = simpl.array([]) # return an empty frame if there are no partials if not partials: return audio_out -- cgit v1.2.3