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 preemph: apply preemphasis filter with preemph as coefficient. 0 is no filter. Default is 0.97.
23
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.
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 lowfreq: lowest band edge of mel filters. In Hz, default is 0.
47
47
:param highfreq: highest band edge of mel filters. In Hz, default is samplerate/2
48
48
:param preemph: apply preemphasis filter with preemph as coefficient. 0 is no filter. Default is 0.97.
49
-
:param winfunc: the analysis window to apply to each frame. By default no window is applied.
49
+
: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 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
-
:param winfunc: the analysis window to apply to each frame. By default no window is applied.
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
99
:returns: A numpy array of size (NUMFRAMES by nfilt) containing features. Each row holds 1 feature vector.
0 commit comments