resample library
Functions
-
resample(
List< double> input, int outputLength) → Float64List -
Resamples the
input
audio to the givenoutputLength
. -
resampleByRate(
List< double> input, double inputSampleRate, double outputSampleRate) → Float64List -
Resamples the
input
audio frominputSampleRate
tooutputSampleRate
. -
resampleByRatio(
List< double> input, double ratio) → Float64List -
Resamples the
input
audio by the given samplingratio
. Ifratio
> 1 the result will have more samples.