mfcc 1.0.1 copy "mfcc: ^1.0.1" to clipboard
mfcc: ^1.0.1 copied to clipboard

outdated

A library written in Dart to extract Mel-Frequency Cepstral Coefficients (MFCCs) from a signal.

example/mfcc_example.dart

import 'package:mfcc/mfcc.dart';

main() {
  var sampleRate = 16000;
  var windowLength = 1024;
  var windowStride = 512;
  var fftSize = 512;
  var numFilter = 20;
  var numCoefs = 13;
  var mySignal = List<double>.generate(16000, (i) => i.toDouble());
  var features = MFCC.mfccFeats(mySignal, sampleRate, windowLength, windowStride, fftSize, numFilter, numCoefs);
  print('Generated ${features.length} x ${features[0].length} MFCC features from signal of length ${mySignal.length}');
}
6
likes
30
pub points
42%
popularity

Publisher

unverified uploader

A library written in Dart to extract Mel-Frequency Cepstral Coefficients (MFCCs) from a signal.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

fft

More

Packages that depend on mfcc