Skip to content

v10.4.0

Compare
Choose a tag to compare
@rochars rochars released this 21 Jan 01:52
· 53 commits to master since this release

version 10.4.0 - 2020-01-20

  • Default LPF for resample is IIR
  • Use FIR or IIR LPFs to resample:
// Will use 'linear' method with a FIR LPF
wav.toSampleRate(44100, {method: "linear", LPF: true, LPFType: 'FIR'});

// Will use 'linear' method with a IIR LPF, the default
wav.toSampleRate(44100, {method: "linear", LPF: true});