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
:param lowfreq: lowest band edge of mel filters. In Hz, default is 0.
21
21
:param highfreq: highest band edge of mel filters. In Hz, default is samplerate/2
22
-
:param preemph: apply preemphasis filter with preemph as coefficient. 0 is no filter. Default is 0.97.
23
-
:param ceplifter: apply a lifter to final cepstral coefficients. 0 is no lifter. Default is 22.
22
+
:param preemph: apply preemphasis filter with preemph as coefficient. 0 is no filter. Default is 0.97.
23
+
:param ceplifter: apply a lifter to final cepstral coefficients. 0 is no lifter. Default is 22.
24
24
:param appendEnergy: if this is true, the zeroth cepstral coefficient is replaced with the log of the total frame energy.
25
-
:param winfunc: the analysis window to apply to each frame. By default no window is applied. You can use numpy window functions here e.g. winfunc=numpy.hamming
25
+
:param winfunc: the analysis window to apply to each frame. By default no window is applied. You can use numpy window functions here e.g. winfunc=numpy.hamming
26
26
:returns: A numpy array of size (NUMFRAMES by numcep) containing features. Each row holds 1 feature vector.
:param winfunc: the analysis window to apply to each frame. By default no window is applied. You can use numpy window functions here e.g. winfunc=numpy.hamming
50
50
:returns: 2 values. The first is a numpy array of size (NUMFRAMES by nfilt) containing features. Each row holds 1 feature vector. The
51
51
second return value is the energy in each frame (total energy, unwindowed)
:param signal: the audio signal from which to compute features. Should be an N*1 array
90
90
:param samplerate: the samplerate of the signal we are working with.
91
-
:param winlen: the length of the analysis window in seconds. Default is 0.025s (25 milliseconds)
92
-
:param winstep: the step between successive windows in seconds. Default is 0.01s (10 milliseconds)
91
+
:param winlen: the length of the analysis window in seconds. Default is 0.025s (25 milliseconds)
92
+
:param winstep: the step between successive windows in seconds. Default is 0.01s (10 milliseconds)
93
93
:param nfilt: the number of filters in the filterbank, default 26.
94
94
:param nfft: the FFT size. Default is 512.
95
95
:param lowfreq: lowest band edge of mel filters. In Hz, default is 0.
96
96
:param highfreq: highest band edge of mel filters. In Hz, default is samplerate/2
97
97
:param preemph: apply preemphasis filter with preemph as coefficient. 0 is no filter. Default is 0.97.
98
98
:param winfunc: the analysis window to apply to each frame. By default no window is applied. You can use numpy window functions here e.g. winfunc=numpy.hamming
99
-
:returns: A numpy array of size (NUMFRAMES by nfilt) containing features. Each row holds 1 feature vector.
100
-
"""
99
+
:returns: A numpy array of size (NUMFRAMES by nfilt) containing features. Each row holds 1 feature vector.
0 commit comments