aubio_mfcc_set_mel_coeffs method
Mel filterbank initialization
\param mf mfcc object \param fmin start frequency, in Hz \param fmax end frequency, in Hz
The filterbank will be initialized with bands linearly spaced in the mel
scale, from fmin
to fmax
.
See also
aubio_filterbank_set_mel_coeffs()
Implementation
int aubio_mfcc_set_mel_coeffs(
ffi.Pointer<aubio_mfcc_t> mf,
double fmin,
double fmax,
) {
return _aubio_mfcc_set_mel_coeffs(
mf,
fmin,
fmax,
);
}