-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfive_new.py
28 lines (22 loc) · 836 Bytes
/
five_new.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
import numpy as np
import matplotlib.pyplot as plt
from scipy.io import wavfile
from python_speech_features import mfcc, logfbank
#Read input sound file
sampling_freq, audio = wavfile.read("Chapter07/banana2.wav")
#Extract MFCC and Filter bank features
mfcc_features = mfcc(audio, sampling_freq)
filterbank_features = logfbank(audio, sampling_freq)
#Print parameters
print '\nMFCC:\n Number of windows =', mfcc_features.shape[0]
print 'Length of each feature =', mfcc_features.shape[1]
print 'Filter bank:\nNumber of Windows =', filterbank_features.shape[0]
print 'Length of each feature =', filterbank_features.shape[1]
#Plot the features
mfcc_features = mfcc_features.T
plt.matshow(mfcc_features)
plt.title("MFCC")
filterbank_features = filterbank_features.T
plt.matshow(filterbank_features)
plt.title("FIlter Bank")
plt.show()