I'm using numpy and scipy, I want to add reverb effect to signal.
It is possible to make reverb with these libaries?
Any help (even if it's just a kick in the right direction) would be appreciated.
I'm using numpy and scipy, I want to add reverb effect to signal.
It is possible to make reverb with these libaries?
Any help (even if it's just a kick in the right direction) would be appreciated.
It is certainly possible to do signal processing in scipy, specifically using scipy.signal. Check out their documentation for a list of useful signal processing functions. You can create a simple convolution reverb using scipy.signal.convolve as long as you acquire the impulse response of the room/space you'd like to emulate.