resample library

Functions

resample(List<double> input, int outputLength) Float64List
Resamples the input audio to the given outputLength.
resampleByRate(List<double> input, double inputSampleRate, double outputSampleRate) Float64List
Resamples the input audio from inputSampleRate to outputSampleRate.
resampleByRatio(List<double> input, double ratio) Float64List
Resamples the input audio by the given sampling ratio. If ratio > 1 the result will have more samples.