-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisualizer.py
More file actions
132 lines (111 loc) · 3.75 KB
/
visualizer.py
File metadata and controls
132 lines (111 loc) · 3.75 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
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
import os
from tqdm import tqdm
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from scipy.io import wavfile
from python_speech_features import mfcc, logfbank
import librosa
from sys import argv
rows = 1
cols = 2
def plot_signals(signals):
fig, axes = plt.subplots(nrows=rows, ncols=cols, sharex=False,
sharey=True, figsize=(20,5))
fig.suptitle('Time Series', size=16)
i = 0
for x in range(rows):
for y in range(cols):
axes[y].set_title(list(signals.keys())[i])
axes[y].plot(list(signals.values())[i])
axes[y].get_xaxis().set_visible(False)
axes[y].get_yaxis().set_visible(False)
i += 1
def plot_fft(fft):
fig, axes = plt.subplots(nrows=rows, ncols=cols, sharex=False,
sharey=True, figsize=(20,5))
fig.suptitle('Fourier Transforms', size=16)
i = 0
for x in range(rows):
for y in range(cols):
data = list(fft.values())[i]
Y, freq = data[0], data[1]
axes[y].set_title(list(fft.keys())[i])
axes[y].plot(freq, Y)
axes[y].get_xaxis().set_visible(False)
axes[y].get_yaxis().set_visible(False)
i += 1
def plot_fbank(fbank):
fig, axes = plt.subplots(nrows=rows, ncols=cols, sharex=False,
sharey=True, figsize=(20,5))
fig.suptitle('Filter Bank Coefficients', size=16)
i = 0
for x in range(rows):
for y in range(cols):
axes[y].set_title(list(fbank.keys())[i])
axes[y].imshow(list(fbank.values())[i],
cmap='hot', interpolation='nearest')
axes[y].get_xaxis().set_visible(False)
axes[y].get_yaxis().set_visible(False)
i += 1
def plot_mfccs(mfccs):
fig, axes = plt.subplots(nrows=rows, ncols=cols, sharex=False,
sharey=True, figsize=(20,5))
fig.suptitle('Mel Frequency Cepstrum Coefficients', size=16)
i = 0
for x in range(rows):
for y in range(cols):
axes[y].set_title(list(mfccs.keys())[i])
axes[y].imshow(list(mfccs.values())[i],
cmap='hot', interpolation='nearest')
axes[y].get_xaxis().set_visible(False)
axes[y].get_yaxis().set_visible(False)
i += 1
def envelope(y, rate, thresh):
mask = []
y = pd.Series(y).apply(np.abs)
y_mean = y.rolling(window=int(rate/10), min_periods=1, center=True).mean() # creates a rolling window to check mean of vals
for mean in y_mean:
if mean > thresh:
mask.append(True)
else:
mask.append(False)
return mask
def calc_fft(y, rate):
n = len(y)
freq = np.fft.rfftfreq(n, d=1/rate)
Y = abs(np.fft.rfft(y)/n)
return Y, freq
def make_plots(indir, runs):
# if len(argv) != 2:
# print('Need 2 args')
# sys.exit(1)
# thedir = argv[1]
thedir = indir
rows = runs
signals = {}
fft = {}
fbank = {}
mfccs = {}
for audsamp in os.listdir(thedir):
# captures first file of each instrument
f = f"{thedir}/{audsamp}"
signal, rate = librosa.load(f , sr=44100)
mask = envelope(signal, rate, 0.0005)
signal = signal[mask]
signals[audsamp] = signal
fft[audsamp] = calc_fft(signal, rate)
bank = logfbank(signal[:rate], rate, nfilt=26, nfft=1103).T
fbank[audsamp] = bank
mel = mfcc(signal[:rate], rate, numcep=13, nfilt=26, nfft=1103).T
mfccs[audsamp] = mel
plot_signals(signals)
plt.show()
plot_fft(fft)
plt.show()
plot_fbank(fbank)
plt.show()
plot_mfccs(mfccs)
plt.show()
# if __name__ == "__main__":
# main()