1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
|
# Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
import unittest
from simpl import pysms as simplsms
import simpl
import pysms
from scipy.io.wavfile import read
import numpy as np
FLOAT_PRECISION = 3 # number of decimal places to check for accuracy
input_file = 'audio/flute.wav'
audio_in_data = read(input_file)
audio_in = simpl.asarray(audio_in_data[1]) / 32768.0
sampling_rate = audio_in_data[0]
frame_size = 2048
hop_size = 256
num_frames = 5
max_peaks = 10
max_partials = 3
num_samples = frame_size + ((num_frames - 1) * hop_size)
audio_in = audio_in[0:num_samples]
def print_partials(partials):
for partial in partials:
print [p.frequency for p in partial.peaks], ":", partial.starting_frame
class TestSimplSMS(unittest.TestCase):
def test_size_next_read(self):
"""test_size_next_read
Make sure pysms PeakDetection is calculating
the correct value for the size of the next frame."""
pysms.sms_init()
sms_header = pysms.SMS_Header()
analysis_params = pysms.SMS_AnalParams()
snd_header = pysms.SMS_SndHeader()
# Try to open the input file to fill snd_header
if(pysms.sms_openSF(input_file, snd_header)):
raise NameError("error opening sound file: " + pysms.sms_errorString())
analysis_params.iSamplingRate = sampling_rate
analysis_params.iFrameRate = sampling_rate / hop_size
analysis_params.iWindowType = pysms.SMS_WIN_HAMMING
analysis_params.fDefaultFundamental = 100
analysis_params.fHighestFreq = 20000
analysis_params.peakParams.iMaxPeaks = max_peaks
analysis_params.iMaxDelayFrames = num_frames + 1
analysis_params.analDelay = 0
analysis_params.minGoodFrames = 1
pysms.sms_initAnalysis(analysis_params, snd_header)
sms_header.nStochasticCoeff = 128
pysms.sms_fillHeader(sms_header, analysis_params, "pysms")
sample_offset = 0
pysms_size_new_data = 0
current_frame = 0
sms_next_read_sizes = []
while current_frame < num_frames:
sms_next_read_sizes.append(analysis_params.sizeNextRead)
sample_offset += pysms_size_new_data
if((sample_offset + analysis_params.sizeNextRead) < num_samples):
pysms_size_new_data = analysis_params.sizeNextRead
else:
pysms_size_new_data = num_samples - sample_offset
frame = audio_in[sample_offset:sample_offset + pysms_size_new_data]
analysis_data = pysms.SMS_Data()
pysms.sms_allocFrameH(sms_header, analysis_data)
status = pysms.sms_analyze(frame, analysis_data, analysis_params)
# as the no. of frames of delay is > num_frames, sms_analyze should
# never get around to performing partial tracking, and so the return
# value should be 0
self.assertEquals(status, 0)
current_frame += 1
pysms.sms_freeAnalysis(analysis_params)
pysms.sms_closeSF()
pysms.sms_free()
pd = simpl.SMSPeakDetection()
pd.hop_size = hop_size
current_frame = 0
sample_offset = 0
size_new_data = 0
while current_frame < num_frames:
self.assertEquals(sms_next_read_sizes[current_frame], pd.frame_size)
sample_offset += size_new_data
size_new_data = pd.frame_size
pd.find_peaks_in_frame(audio_in[sample_offset:sample_offset + size_new_data])
pd.frame_size = pd._analysis_params.sizeNextRead
current_frame += 1
def test_peak_detection(self):
"""test_peak_detection
Compare pysms Peaks with SMS peaks. Exact peak
information cannot be retrieved using libsms. Basic peak detection
is performed by sms_detectPeaks, but this is called multiple times
with different frame sizes by sms_analyze. This peak data cannot
be returned from sms_analyze without modifying it, so here
we compare the peaks to a slightly modified version of sms_analyze
from pysms. The peak values should be the same as those found by
the pysms find_peaks function. Analyses have to be performed
separately due to libsms implementation issues."""
pysms.sms_init()
sms_header = pysms.SMS_Header()
analysis_params = pysms.SMS_AnalParams()
analysis_params.iSamplingRate = sampling_rate
analysis_params.iFrameRate = sampling_rate / hop_size
sms_header.nStochasticCoeff = 128
analysis_params.fDefaultFundamental = 100
analysis_params.fHighestFreq = 20000
analysis_params.iMaxDelayFrames = num_frames + 1
analysis_params.analDelay = 0
analysis_params.minGoodFrames = 1
analysis_params.iFormat = pysms.SMS_FORMAT_HP
analysis_params.nTracks = max_peaks
analysis_params.iWindowType = pysms.SMS_WIN_HAMMING
simplsms.sms_initAnalysis(analysis_params)
analysis_params.peakParams.iMaxPeaks = max_peaks
pysms.sms_fillHeader(sms_header, analysis_params, "pysms")
sample_offset = 0
size_new_data = 0
current_frame = 0
sms_peaks = []
while current_frame < num_frames:
sample_offset += size_new_data
if((sample_offset + analysis_params.sizeNextRead) < num_samples):
size_new_data = analysis_params.sizeNextRead
else:
size_new_data = num_samples - sample_offset
frame = audio_in[sample_offset:sample_offset + size_new_data]
analysis_data = pysms.SMS_Data()
pysms.sms_allocFrameH(sms_header, analysis_data)
status = pysms.sms_analyze(frame, analysis_data, analysis_params)
# as the no. of frames of delay is > num_frames, sms_analyze should
# never get around to performing partial tracking, and so the return
# value should be 0
self.assertEquals(status, 0)
num_peaks = analysis_data.nTracks
frame_peaks = []
pysms_freqs = simpl.zeros(num_peaks)
pysms_amps = simpl.zeros(num_peaks)
pysms_phases = simpl.zeros(num_peaks)
analysis_data.getSinFreq(pysms_freqs)
analysis_data.getSinAmp(pysms_amps)
analysis_data.getSinPhase(pysms_phases)
for i in range(num_peaks):
p = simpl.Peak()
p.amplitude = pysms_amps[i]
p.frequency = pysms_freqs[i]
p.phase = pysms_phases[i]
frame_peaks.append(p)
sms_peaks.append(frame_peaks)
current_frame += 1
pysms.sms_freeAnalysis(analysis_params)
pysms.sms_free()
pd = simpl.SMSPeakDetection()
pd.hop_size = hop_size
pd.max_peaks = max_peaks
current_frame = 0
sample_offset = 0
size_new_data = 0
pysms_peaks = []
while current_frame < num_frames:
sample_offset += size_new_data
size_new_data = pd.frame_size
pysms_peaks.append(
pd.find_peaks_in_frame(audio_in[sample_offset:sample_offset + size_new_data]))
pd.frame_size = pd._analysis_params.sizeNextRead
current_frame += 1
# make sure we have the same number of frames
self.assertEquals(len(sms_peaks), len(pysms_peaks))
for frame_number in range(len(sms_peaks)):
sms_frame = sms_peaks[frame_number]
pysms_frame = pysms_peaks[frame_number]
# make sure we have the same number of peaks in each frame
self.assertEquals(len(sms_frame), len(pysms_frame))
# check peak values
for peak_number in range(len(sms_frame)):
sms_peak = sms_frame[peak_number]
pysms_peak = pysms_frame[peak_number]
self.assertAlmostEquals(sms_peak.amplitude, pysms_peak.amplitude,
places=FLOAT_PRECISION)
self.assertAlmostEquals(sms_peak.frequency, pysms_peak.frequency,
places=FLOAT_PRECISION)
self.assertAlmostEquals(sms_peak.phase, pysms_peak.phase,
places=FLOAT_PRECISION)
def test_partial_tracking(self):
"""test_partial_tracking
Compare pysms Partials with SMS partials."""
pysms.sms_init()
sms_header = pysms.SMS_Header()
snd_header = pysms.SMS_SndHeader()
# Try to open the input file to fill snd_header
if(pysms.sms_openSF(input_file, snd_header)):
raise NameError("error opening sound file: " + pysms.sms_errorString())
analysis_params = pysms.SMS_AnalParams()
analysis_params.iSamplingRate = sampling_rate
analysis_params.iFrameRate = sampling_rate / hop_size
sms_header.nStochasticCoeff = 128
analysis_params.fDefaultFundamental = 100
analysis_params.fHighestFreq = 20000
analysis_params.iMaxDelayFrames = 3
analysis_params.analDelay = 0
analysis_params.minGoodFrames = 1
analysis_params.iFormat = pysms.SMS_FORMAT_HP
analysis_params.nTracks = max_partials
analysis_params.nGuides = max_partials
analysis_params.iWindowType = pysms.SMS_WIN_HAMMING
pysms.sms_initAnalysis(analysis_params, snd_header)
analysis_params.nFrames = num_samples / hop_size
analysis_params.iSizeSound = num_samples
analysis_params.peakParams.iMaxPeaks = max_peaks
analysis_params.iStochasticType = pysms.SMS_STOC_NONE
pysms.sms_fillHeader(sms_header, analysis_params, "pysms")
sample_offset = 0
size_new_data = 0
current_frame = 0
sms_partials = []
live_partials = [None for i in range(max_partials)]
do_analysis = True
while do_analysis and (current_frame < num_frames):
sample_offset += size_new_data
if((sample_offset + analysis_params.sizeNextRead) < num_samples):
size_new_data = analysis_params.sizeNextRead
else:
size_new_data = num_samples - sample_offset
frame = audio_in[sample_offset:sample_offset + size_new_data]
analysis_data = pysms.SMS_Data()
pysms.sms_allocFrameH(sms_header, analysis_data)
status = pysms.sms_analyze(frame, analysis_data, analysis_params)
if status == 1:
num_partials = analysis_data.nTracks
pysms_freqs = simpl.zeros(num_partials)
pysms_amps = simpl.zeros(num_partials)
pysms_phases = simpl.zeros(num_partials)
analysis_data.getSinFreq(pysms_freqs)
analysis_data.getSinAmp(pysms_amps)
analysis_data.getSinPhase(pysms_phases)
# make partial objects
for i in range(num_partials):
# for each partial, if the mag is > 0, this partial is alive
if pysms_amps[i] > 0:
# create a peak object
p = simpl.Peak()
p.amplitude = pysms_amps[i]
p.frequency = pysms_freqs[i]
p.phase = pysms_phases[i]
# add this peak to the appropriate partial
if not live_partials[i]:
live_partials[i] = simpl.Partial()
live_partials[i].starting_frame = current_frame
sms_partials.append(live_partials[i])
live_partials[i].add_peak(p)
# if the mag is 0 and this partial was alive, kill it
else:
if live_partials[i]:
live_partials[i] = None
elif status == -1:
do_analysis = False
current_frame += 1
pysms.sms_freeAnalysis(analysis_params)
pysms.sms_closeSF()
pysms.sms_free()
pd = simpl.SMSPeakDetection()
pd.max_peaks = max_peaks
pd.hop_size = hop_size
peaks = pd.find_peaks(audio_in)
pt = simpl.SMSPartialTracking()
pt.max_partials = max_partials
partials = pt.find_partials(peaks[0:num_frames])
# make sure both have the same number of partials
self.assertEquals(len(sms_partials), len(partials))
# make sure each partial is the same
for i in range(len(sms_partials)):
self.assertEquals(sms_partials[i].get_length(), partials[i].get_length())
for peak_number in range(sms_partials[i].get_length()):
self.assertAlmostEquals(sms_partials[i].peaks[peak_number].amplitude,
partials[i].peaks[peak_number].amplitude,
places = FLOAT_PRECISION)
self.assertAlmostEquals(sms_partials[i].peaks[peak_number].frequency,
partials[i].peaks[peak_number].frequency,
places = FLOAT_PRECISION)
self.assertAlmostEquals(sms_partials[i].peaks[peak_number].phase,
partials[i].peaks[peak_number].phase,
places = FLOAT_PRECISION)
def test_interpolate_frames(self):
"""test_interpolate_frames
Make sure that pysms.sms_interpolateFrames returns the expected values
with interpolation factors of 0 and 1."""
pysms.sms_init()
sms_header = pysms.SMS_Header()
snd_header = pysms.SMS_SndHeader()
# Try to open the input file to fill snd_header
if(pysms.sms_openSF(input_file, snd_header)):
raise NameError("error opening sound file: " + pysms.sms_errorString())
analysis_params = pysms.SMS_AnalParams()
analysis_params.iSamplingRate = 44100
analysis_params.iFrameRate = sampling_rate / hop_size
sms_header.nStochasticCoeff = 128
analysis_params.fDefaultFundamental = 100
analysis_params.fHighestFreq = 20000
analysis_params.iMaxDelayFrames = 3
analysis_params.analDelay = 0
analysis_params.minGoodFrames = 1
analysis_params.iFormat = pysms.SMS_FORMAT_HP
analysis_params.nTracks = max_partials
analysis_params.nGuides = max_partials
analysis_params.iWindowType = pysms.SMS_WIN_HAMMING
pysms.sms_initAnalysis(analysis_params, snd_header)
analysis_params.nFrames = num_samples / hop_size
analysis_params.iSizeSound = num_samples
analysis_params.peakParams.iMaxPeaks = max_peaks
analysis_params.iStochasticType = pysms.SMS_STOC_NONE
pysms.sms_fillHeader(sms_header, analysis_params, "pysms")
interp_frame = pysms.SMS_Data()
pysms.sms_allocFrame(interp_frame, sms_header.nTracks, sms_header.nStochasticCoeff, 1, sms_header.iStochasticType, 0)
sample_offset = 0
size_new_data = 0
current_frame = 0
sms_header.nFrames = num_frames
analysis_frames = []
do_analysis = True
while do_analysis and (current_frame < num_frames):
sample_offset += size_new_data
if((sample_offset + analysis_params.sizeNextRead) < num_samples):
size_new_data = analysis_params.sizeNextRead
else:
size_new_data = num_samples - sample_offset
frame = audio_in[sample_offset:sample_offset + size_new_data]
analysis_data = pysms.SMS_Data()
pysms.sms_allocFrameH(sms_header, analysis_data)
status = pysms.sms_analyze(frame, analysis_data, analysis_params)
if status == 1:
analysis_frames.append(analysis_data)
# test interpolateFrames on the last two analysis frames
if current_frame == num_frames - 1:
left_frame = analysis_frames[-2]
right_frame = analysis_frames[-1]
pysms.sms_interpolateFrames(left_frame, right_frame, interp_frame, 0)
# make sure that interp_frame == left_frame
# interpolateFrames doesn't interpolate phases so ignore
left_amps = simpl.zeros(max_partials)
left_freqs = simpl.zeros(max_partials)
left_frame.getSinAmp(left_amps)
left_frame.getSinFreq(left_freqs)
right_amps = simpl.zeros(max_partials)
right_freqs = simpl.zeros(max_partials)
right_frame.getSinAmp(right_amps)
right_frame.getSinFreq(right_freqs)
interp_amps = simpl.zeros(max_partials)
interp_freqs = simpl.zeros(max_partials)
interp_frame.getSinAmp(interp_amps)
interp_frame.getSinFreq(interp_freqs)
for i in range(max_partials):
self.assertAlmostEquals(left_amps[i], interp_amps[i],
places = FLOAT_PRECISION)
if left_freqs[i] != 0:
self.assertAlmostEquals(left_freqs[i], interp_freqs[i],
places = FLOAT_PRECISION)
else:
self.assertAlmostEquals(right_freqs[i], interp_freqs[i],
places = FLOAT_PRECISION)
pysms.sms_interpolateFrames(left_frame, right_frame, interp_frame, 1)
interp_amps = simpl.zeros(max_partials)
interp_freqs = simpl.zeros(max_partials)
interp_frame.getSinAmp(interp_amps)
interp_frame.getSinFreq(interp_freqs)
for i in range(max_partials):
self.assertAlmostEquals(right_amps[i], interp_amps[i],
places = FLOAT_PRECISION)
if right_freqs[i] != 0:
self.assertAlmostEquals(right_freqs[i], interp_freqs[i],
places = FLOAT_PRECISION)
else:
self.assertAlmostEquals(left_freqs[i], interp_freqs[i],
places = FLOAT_PRECISION)
elif status == -1:
raise Exception("AnalysisStoppedEarly")
current_frame += 1
pysms.sms_freeAnalysis(analysis_params)
pysms.sms_closeSF()
def test_harmonic_synthesis(self):
"""test_harmonic_synthesis
Compare pysms synthesised harmonic component with SMS synthesised
harmonic component."""
pysms.sms_init()
sms_header = pysms.SMS_Header()
snd_header = pysms.SMS_SndHeader()
# Try to open the input file to fill snd_header
if(pysms.sms_openSF(input_file, snd_header)):
raise NameError("error opening sound file: " + pysms.sms_errorString())
analysis_params = pysms.SMS_AnalParams()
analysis_params.iSamplingRate = 44100
analysis_params.iFrameRate = sampling_rate / hop_size
sms_header.nStochasticCoeff = 128
analysis_params.fDefaultFundamental = 100
analysis_params.fHighestFreq = 20000
analysis_params.iMaxDelayFrames = 3
analysis_params.analDelay = 0
analysis_params.minGoodFrames = 1
analysis_params.iFormat = pysms.SMS_FORMAT_HP
analysis_params.nTracks = max_partials
analysis_params.nGuides = max_partials
analysis_params.iWindowType = pysms.SMS_WIN_HAMMING
pysms.sms_initAnalysis(analysis_params, snd_header)
analysis_params.nFrames = num_samples / hop_size
analysis_params.iSizeSound = num_samples
analysis_params.peakParams.iMaxPeaks = max_peaks
analysis_params.iStochasticType = pysms.SMS_STOC_NONE
pysms.sms_fillHeader(sms_header, analysis_params, "pysms")
sample_offset = 0
size_new_data = 0
current_frame = 0
sms_header.nFrames = num_frames
analysis_frames = []
do_analysis = True
while do_analysis and (current_frame < num_frames):
sample_offset += size_new_data
if((sample_offset + analysis_params.sizeNextRead) < num_samples):
size_new_data = analysis_params.sizeNextRead
else:
size_new_data = num_samples - sample_offset
frame = audio_in[sample_offset:sample_offset + size_new_data]
analysis_data = pysms.SMS_Data()
pysms.sms_allocFrameH(sms_header, analysis_data)
status = pysms.sms_analyze(frame, analysis_data, analysis_params)
analysis_frames.append(analysis_data)
if status == -1:
do_analysis = False
current_frame += 1
pysms.sms_freeAnalysis(analysis_params)
pysms.sms_closeSF()
interp_frame = pysms.SMS_Data()
synth_params = pysms.SMS_SynthParams()
synth_params.iSynthesisType = pysms.SMS_STYPE_DET
synth_params.iDetSynthType = pysms.SMS_DET_SIN
synth_params.sizeHop = hop_size
synth_params.iSamplingRate = 0
pysms.sms_initSynth(sms_header, synth_params)
pysms.sms_allocFrame(interp_frame, sms_header.nTracks, sms_header.nStochasticCoeff, 1, sms_header.iStochasticType, sms_header.nEnvCoeff)
synth_samples = pysms.zeros(synth_params.sizeHop)
num_synth_samples = 0
target_synth_samples = len(analysis_frames) * hop_size
pysms_audio = pysms.array([])
current_frame = 0
while num_synth_samples < target_synth_samples:
pysms.sms_synthesize(analysis_frames[current_frame], synth_samples, synth_params)
pysms_audio = np.hstack((pysms_audio, synth_samples))
num_synth_samples += synth_params.sizeHop
current_frame += 1
pysms.sms_freeSynth(synth_params)
pysms.sms_free()
pd = simpl.SMSPeakDetection()
pd.max_peaks = max_peaks
pd.hop_size = hop_size
pt = simpl.SMSPartialTracking()
pt.max_partials = max_partials
peaks = pd.find_peaks(audio_in)
partials = pt.find_partials(peaks[0:num_frames])
synth = simpl.SMSSynthesis()
synth.hop_size = hop_size
synth.stochastic_type = pysms.SMS_STOC_NONE
synth.synthesis_type = pysms.SMS_STYPE_DET
synth.max_partials = max_partials
simpl_audio = synth.synth(partials)
self.assertEquals(pysms_audio.size, simpl_audio.size)
for i in range(simpl_audio.size):
self.assertAlmostEquals(pysms_audio[i], simpl_audio[i],
places = FLOAT_PRECISION)
def test_residual_synthesis(self):
"""test_residual_synthesis
Compare pysms residual signal with SMS residual"""
pysms.sms_init()
sms_header = pysms.SMS_Header()
snd_header = pysms.SMS_SndHeader()
# Try to open the input file to fill snd_header
if(pysms.sms_openSF(input_file, snd_header)):
raise NameError("error opening sound file: " + pysms.sms_errorString())
analysis_params = pysms.SMS_AnalParams()
analysis_params.iSamplingRate = 44100
analysis_params.iFrameRate = sampling_rate / hop_size
sms_header.nStochasticCoeff = 128
analysis_params.fDefaultFundamental = 100
analysis_params.fHighestFreq = 20000
analysis_params.iMaxDelayFrames = 3
analysis_params.analDelay = 0
analysis_params.minGoodFrames = 1
analysis_params.iFormat = pysms.SMS_FORMAT_HP
analysis_params.nTracks = max_partials
analysis_params.nGuides = max_partials
analysis_params.iWindowType = pysms.SMS_WIN_HAMMING
pysms.sms_initAnalysis(analysis_params, snd_header)
analysis_params.nFrames = num_samples / hop_size
analysis_params.iSizeSound = num_samples
analysis_params.peakParams.iMaxPeaks = max_peaks
analysis_params.iStochasticType = pysms.SMS_STOC_APPROX
pysms.sms_fillHeader(sms_header, analysis_params, "pysms")
sample_offset = 0
size_new_data = 0
current_frame = 0
sms_header.nFrames = num_frames
analysis_frames = []
do_analysis = True
while do_analysis and (current_frame < num_frames-1):
sample_offset += size_new_data
if((sample_offset + analysis_params.sizeNextRead) < num_samples):
size_new_data = analysis_params.sizeNextRead
else:
size_new_data = num_samples - sample_offset
frame = audio_in[sample_offset:sample_offset + size_new_data]
analysis_data = pysms.SMS_Data()
pysms.sms_allocFrameH(sms_header, analysis_data)
status = pysms.sms_analyze(frame, analysis_data, analysis_params)
analysis_frames.append(analysis_data)
if status == -1:
do_analysis = False
current_frame += 1
pysms.sms_freeAnalysis(analysis_params)
pysms.sms_closeSF()
pysms.sms_free()
pd = simpl.SMSPeakDetection()
pd.max_peaks = max_peaks
pd.hop_size = hop_size
pt = simpl.SMSPartialTracking()
pt.max_partials = max_partials
peaks = pd.find_peaks(audio_in)
partials = pt.find_partials(peaks[0:num_frames])
synth = simpl.SMSSynthesis()
synth.hop_size = hop_size
synth.stochastic_type = pysms.SMS_STOC_NONE
synth.synthesis_type = pysms.SMS_STYPE_DET
synth.max_partials = max_partials
simpl_harmonic = synth.synth(partials)
res = simpl.SMSResidual()
res.num_coefficients = 128
res.type = simpl.SMSResidual.TIME_DOMAIN
residual = res.find_residual(simpl_harmonic, audio_in[0:simpl_harmonic.size])
# print_partials(partials)
# print simpl_harmonic.size
# for i in range(residual.size):
# print residual[i]
# for i in range(simpl_harmonic.size):
# print simpl_harmonic[i]
# from pylab import plot, show
# plot(simpl_harmonic)
# plot(residual)
# plot(audio_in[0:simpl_harmonic.size])
# show()
# from scipy.io.wavfile import write
# write("res.wav", 44100, residual)
# res.synth(simpl_harmonic, audio_in)
if __name__ == '__main__':
suite = unittest.TestSuite()
suite.addTest(TestSimplSMS('test_size_next_read'))
suite.addTest(TestSimplSMS('test_peak_detection'))
suite.addTest(TestSimplSMS('test_partial_tracking'))
suite.addTest(TestSimplSMS('test_interpolate_frames'))
suite.addTest(TestSimplSMS('test_harmonic_synthesis'))
suite.addTest(TestSimplSMS('test_residual_synthesis'))
unittest.TextTestRunner().run(suite)
|