-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfreq_filter.py
More file actions
75 lines (55 loc) · 1.7 KB
/
Copy pathfreq_filter.py
File metadata and controls
75 lines (55 loc) · 1.7 KB
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
import numpy as np
import matplotlib.pyplot as plt
from scipy.io import wavfile
import wave as we
def read_wav(wavfile):
f = wavfile
params = f.getparams()
nchannels, sampwidth, framerate, nframes = params[:4]
strData = f.readframes(nframes)
waveData = np.frombuffer(strData, dtype=np.int16)
time = np.arange(0, nframes)*(1.0 / framerate)
plt.plot(time, waveData)
plt.xlabel("Time")
plt.ylabel("Amplitude")
plt.title("Wavedata")
plt.show()
return (waveData, time)
print("\nInput test_noise wave data:")
f = we.open("test_noise.wav", 'rb')
data, time = read_wav(f)
def fft_wav(waveData):
f_array = np.fft.fft(waveData)
f_abs = f_array
axis_f = np.linspace(0, 100, np.int(len(f_array)))
plt.plot(axis_f, np.abs(f_abs[0:len(axis_f)]))
plt.xlabel("Frequency")
plt.ylabel("Amplitude spectrum")
plt.title("Tile map")
plt.show()
return f_abs
wave_fft = fft_wav(data)
step_hz = 100/(len(data)/2)
tab_hz = 68
new_wav = wave_fft.copy()
for i in range(int(tab_hz/step_hz), (len(wave_fft) - int(tab_hz/step_hz))):
new_wav[i]=0
axis_f = np.linspace(0, 100, np.int(len(wave_fft)))
plt.plot(axis_f, np.abs(new_wav[0:len(axis_f)]))
plt.xlabel("Frequency")
plt.ylabel("Amplitude spectrum")
plt.title("Tile map after wave filtering")
plt.show()
filtered_wave = np.fft.ifft(new_wav)
plt.plot(time, filtered_wave.real)
plt.xlabel("Time")
plt.ylabel("Amplitude")
plt.title("Frequency Domain filtering wavedata")
plt.show()
save_wav = filtered_wave.real.reshape((len(filtered_wave), 1)).T.astype(np.short)
f = we.open("freq_flitering.wav", "wb")
f.setnchannels(1)
f.setsampwidth(2)
f.setframerate(16000)
f.writeframes(save_wav.tostring())
f.close()