pythonmatlabsignal-processing

Python equivalent of Matlab's resample()


Is there a python function that achieves resampling in the way MATLAB's resample() does? I've looked into scikits.samplerate's resample function but I'm not quite getting similar results.


Solution

  • There's a blog 'Audio Resampling in Python' about this. Both resampy and scipy.signal have a resample function implementation in different ways.