Getting started
API documentation
Advanced topics
Reference
Set the FFT library used by librosa.
Must implement an interface compatible with numpy.fft. If None, reverts to numpy.fft.
numpy.fft
None
Examples
Use pyfftw:
>>> import pyfftw >>> librosa.set_fftlib(pyfftw.interfaces.numpy_fft)
Reset to default numpy implementation
numpy
>>> librosa.set_fftlib()