You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
signalthe audio signal from which to compute features. Should be an N*1 array
88
-
sampleratethe samplerate of the signal we are working with
89
-
winlenthe length of the analysis window in seconds. Default is 0.025s (25 milliseconds)
90
-
winstepthe step between seccessive windows in seconds. Default is 0.01s (10 milliseconds)
91
-
nfiltthe number of filters in the filterbank, default 26.
92
-
nfftthe FFT size. Default is 512.
93
-
lowfreqlowest band edge of mel filters. In Hz, default is 0
94
-
highfreqhighest band edge of mel filters. In Hz, default is samplerate/2
95
-
preemphapply preemphasis filter with preemph as coefficient. 0 is no filter. Default is 0.97
96
-
returnsA numpy array of size (NUMFRAMES by nfilt) containing features. Each row holds 1 feature vector. The second return value is the energy in each frame (total energy, unwindowed)
97
-
========================
84
+
========================
85
+
Parameter Description
86
+
========================
87
+
signalthe audio signal from which to compute features. Should be an N*1 array
88
+
sampleratethe samplerate of the signal we are working with
89
+
winlenthe length of the analysis window in seconds. Default is 0.025s (25 milliseconds)
90
+
winstepthe step between seccessive windows in seconds. Default is 0.01s (10 milliseconds)
91
+
nfiltthe number of filters in the filterbank, default 26.
92
+
nfftthe FFT size. Default is 512.
93
+
lowfreqlowest band edge of mel filters. In Hz, default is 0
94
+
highfreqhighest band edge of mel filters. In Hz, default is samplerate/2
95
+
preemphapply preemphasis filter with preemph as coefficient. 0 is no filter. Default is 0.97
96
+
returnsA numpy array of size (NUMFRAMES by nfilt) containing features. Each row holds 1 feature vector. The second return value is the energy in each frame (total energy, unwindowed)
0 commit comments