-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathifftSynth.py
51 lines (48 loc) · 1.55 KB
/
ifftSynth.py
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
'''
Synthesizes an audio page from a spectrum.
'''
import numpy as np
from harmonicSynth import Harmonic
class IfftSynth:
def __init__(self, SR, PAGE_LEN):
self.SR = SR
self.PAGE_LEN = PAGE_LEN
self.SPECTRUM_SIZE = (PAGE_LEN // 2 + 1, )
self.last_power = 0
self.last_signal = None
def _eat(self, harmonics, base_spectrum):
if base_spectrum is None:
spectrum = np.zeros(self.SPECTRUM_SIZE)
else:
spectrum = base_spectrum
for freq, mag in harmonics:
try:
spectrum[round(
freq / self.SR * self.PAGE_LEN
)] += mag
except IndexError:
continue
signal = np.fft.irfft(spectrum) * self.PAGE_LEN * 2
# For some reason you need a "* 2"
power = np.sum(np.abs(spectrum))
# power = signal[0]
if power == 0:
if self.last_power == 0:
return signal, power, signal
else:
mask = np.linspace(
1, 0, self.PAGE_LEN,
)
return self.last_signal * mask, power, signal
else:
mask = np.linspace(
self.last_power / power, 1, self.PAGE_LEN,
)
return signal * mask, power, signal
def eat(self, harmonics, base_spectrum = None):
output, power, signal = self._eat(
harmonics, base_spectrum,
)
self.last_power = power
self.last_signal = signal
return output