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
|
import os
import numpy as np
import scipy.io.wavfile as wavfile
from nose.tools import assert_almost_equals
import simpl.base as base
float_precision = 5
frame_size = 512
hop_size = 512
audio_path = os.path.join(
os.path.dirname(__file__), 'audio/flute.wav'
)
class TestFrame(object):
def test_buffers(self):
N = 256
f = base.Frame(N)
assert f.size == N
a = np.random.rand(N)
f.audio = a
assert np.all(f.audio == a)
a = np.random.rand(N)
f.synth = a
assert np.all(f.synth == a)
a = np.random.rand(N)
f.residual = a
assert np.all(f.residual == a)
a = np.random.rand(N)
f.synth_residual = a
assert np.all(f.synth_residual == a)
def test_peaks(self):
p = base.Peak()
p.amplitude = 0.5
p.frequency = 220.0
p.phase = 0.0
f = base.Frame()
assert f.num_peaks == 0
assert f.max_peaks > 0
f.add_peak(p)
assert f.num_peaks == 1
assert_almost_equals(f.peak(0).amplitude, p.amplitude,
float_precision)
assert_almost_equals(f.peaks[0].amplitude, p.amplitude,
float_precision)
f.clear()
assert f.num_peaks == 0
def test_partials(self):
N = 256
f = base.Frame(N)
f.max_partials = 10
p = base.Peak()
p.amplitude = 0.5
p.frequency = 220.0
p.phase = 0.0
f.partial(0, p)
assert_almost_equals(f.partial(0).amplitude, p.amplitude,
float_precision)
assert_almost_equals(f.partial(0).frequency, p.frequency,
float_precision)
class TestPeakDetection(object):
@classmethod
def setup_class(cls):
cls.audio = wavfile.read(audio_path)[1]
cls.audio = np.asarray(cls.audio, dtype=np.double)
cls.audio /= np.max(cls.audio)
def test_peak_detection(self):
pd = base.PeakDetection()
pd.find_peaks(self.audio)
assert len(pd.frames) == len(self.audio) / hop_size
assert len(pd.frames[0].peaks) == 0
class TestPartialTracking(object):
@classmethod
def setup_class(cls):
cls.audio = wavfile.read(audio_path)[1]
cls.audio = np.asarray(cls.audio, dtype=np.double)
cls.audio /= np.max(cls.audio)
def test_partial_tracking(self):
pd = base.PeakDetection()
frames = pd.find_peaks(self.audio)
pt = base.PartialTracking()
frames = pt.find_partials(frames)
assert len(frames) == len(self.audio) / hop_size
assert len(frames[0].partials) == 100
class TestSynthesis(object):
@classmethod
def setup_class(cls):
cls.audio = wavfile.read(audio_path)[1]
cls.audio = np.asarray(cls.audio, dtype=np.double)
cls.audio /= np.max(cls.audio)
def test_synthesis(self):
pd = base.PeakDetection()
frames = pd.find_peaks(self.audio)
pt = base.PartialTracking()
frames = pt.find_partials(frames)
s = base.Synthesis()
synth_audio = s.synth(frames)
assert len(synth_audio)
class TestResidual(object):
@classmethod
def setup_class(cls):
cls.audio = wavfile.read(audio_path)[1]
cls.audio = np.asarray(cls.audio, dtype=np.double)
cls.audio /= np.max(cls.audio)
def test_synthesis(self):
pd = base.PeakDetection()
frames = pd.find_peaks(self.audio)
pt = base.PartialTracking()
frames = pt.find_partials(frames)
s = base.Synthesis()
synth_audio = s.synth(frames)
r = base.Residual()
residual_audio = r.find_residual(synth_audio, self.audio)
assert len(residual_audio)
|