Mel-frequency cepstral coefficients.
var mfccBuilder = MachineLearning.createMFCCBuilder();var mfcc = mfccBuilder.setFrameSize(1920) .setHopSize(480) .setFFTSize(2048) .setNumMFCC(13) .setNumMel(13) .setLifter(0) .setMinFreq(0.0) .setMaxFreq(8000.0) .setSampleRate(16000).build(); Copy
var mfccBuilder = MachineLearning.createMFCCBuilder();var mfcc = mfccBuilder.setFrameSize(1920) .setHopSize(480) .setFFTSize(2048) .setNumMFCC(13) .setNumMel(13) .setLifter(0) .setMinFreq(0.0) .setMaxFreq(8000.0) .setSampleRate(16000).build();
Protected
Readonly
Max tensor size.
Returns the name of this object's type.
Returns true if the object matches or derives from the passed in type.
Returns true if this object is the same as other. Useful for checking if two references point to the same thing.
other
Process in tensor with shape, write result to the outTensor, and returns the shape of outTensor.
shape
outTensor
Mel-frequency cepstral coefficients.
Example