diff options
author | John Glover <j@johnglover.net> | 2012-07-03 17:27:12 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-07-03 17:27:12 +0100 |
commit | 23a5f9888e4c28ff5273b16e984caff32caeac69 (patch) | |
tree | dc4111d13217b0e5cbf594a0dd167f5f8da9a703 /tests/test_synthesis.py | |
parent | 9d5c3da8942305461d42627d686abdeac7fba30c (diff) | |
download | simpl-23a5f9888e4c28ff5273b16e984caff32caeac69.tar.gz simpl-23a5f9888e4c28ff5273b16e984caff32caeac69.tar.bz2 simpl-23a5f9888e4c28ff5273b16e984caff32caeac69.zip |
[synthesis] Fix SMSSynthesis (was using Peak data instead of tracked Partials). Add test for harmonic synthesis using sum of sines.
Diffstat (limited to 'tests/test_synthesis.py')
-rw-r--r-- | tests/test_synthesis.py | 38 |
1 files changed, 34 insertions, 4 deletions
diff --git a/tests/test_synthesis.py b/tests/test_synthesis.py index 8c592a5..9a81c8e 100644 --- a/tests/test_synthesis.py +++ b/tests/test_synthesis.py @@ -20,8 +20,11 @@ audio_path = os.path.join( libsms_test_data_path = os.path.join( os.path.dirname(__file__), 'libsms_test_data.json' ) -libsms_harmonic_synthesis_path = os.path.join( - os.path.dirname(__file__), 'libsms_harmonic_synthesis.wav' +libsms_harmonic_synthesis_ifft_path = os.path.join( + os.path.dirname(__file__), 'libsms_harmonic_synthesis_ifft.wav' +) +libsms_harmonic_synthesis_sin_path = os.path.join( + os.path.dirname(__file__), 'libsms_harmonic_synthesis_sin.wav' ) PeakDetection = peak_detection.PeakDetection @@ -83,7 +86,7 @@ class TestSMSSynthesis(object): assert len(synth_audio) == len(self.audio) - def test_harmonic_synthesis(self): + def test_harmonic_synthesis_ifft(self): pd = SMSPeakDetection() pd.hop_size = hop_size frames = pd.find_peaks(self.audio) @@ -94,13 +97,40 @@ class TestSMSSynthesis(object): synth = SMSSynthesis() synth.hop_size = hop_size + synth.max_partials = max_partials synth.det_synthesis_type = SMSSynthesis.SMS_DET_IFFT synth_audio = synth.synth(frames) assert len(synth_audio) == len(self.audio) sms_audio, sampling_rate = simpl.read_wav( - libsms_harmonic_synthesis_path + libsms_harmonic_synthesis_ifft_path + ) + + assert len(synth_audio) == len(sms_audio) + + for i in range(len(synth_audio)): + assert_almost_equals(synth_audio[i], sms_audio[i], float_precision) + + def test_harmonic_synthesis_sin(self): + pd = SMSPeakDetection() + pd.hop_size = hop_size + frames = pd.find_peaks(self.audio) + + pt = SMSPartialTracking() + pt.max_partials = max_partials + frames = pt.find_partials(frames) + + synth = SMSSynthesis() + synth.hop_size = hop_size + synth.max_partials = max_partials + synth.det_synthesis_type = SMSSynthesis.SMS_DET_SIN + synth_audio = synth.synth(frames) + + assert len(synth_audio) == len(self.audio) + + sms_audio, sampling_rate = simpl.read_wav( + libsms_harmonic_synthesis_sin_path ) assert len(synth_audio) == len(sms_audio) |