process_frames method

List<List<double>> process_frames (List<List<num>> frames)

Returns the MFCC values of a list of frames

Implementation

List<List<double>> process_frames(List<List<num>> frames){
  var mfccs = List<List<double>>();
  for (List<double> frame in frames){
    mfccs.add(process_frame(frame));
  }
  return mfccs;
}