pub fn do_resample_frames<S>(
resampler: &Resampler,
input: &[Vec<S>],
src_sample_rate: u32,
dst_sample_rate: u32,
) -> Vec<Vec<S>>where
S: SampleType,Expand description
- Use the
Resamplerto resample audio frames from the original sample rate to a specific sample rate.