python-audio-effects
python-audio-effects copied to clipboard
Apply audio effects such as reverb and EQ directly to audio files or NumPy ndarrays.
Hi, i think the `vol()` function does not work properly. Looking into the code, i can see that we have not used the `gain` parameters within the function. Please double...
My code is this: `import os from pysndfx import AudioEffectsChain inp = "/voiceit/flask/laughter.aac" out = "/voiceit/flask/reverse.mp3" fx = ( AudioEffectsChain() .highshelf() .reverb() .phaser() .delay() .lowshelf() ) fx(inp,out)` The output in...
I used the code in the tutorial: ```py from pysndfx import AudioEffectsChain fx = ( AudioEffectsChain() .highshelf() .reverb() .phaser() .delay() .lowshelf() ) infile = 'C:/Users/user/Desktop/test\\000D3D330B1371EB.wav' outfile = 'C:/Users/user/Desktop/test\\000D3D330B1371EB.wav' fx(infile, outfile)...
Upstream issue https://github.com/librosa/librosa/issues/1160
Thanks for the work! But I found that there are problems when the file path includes spaces on my windows machine. Changing the argument "posix" to be True fixes the...
According to [SoX documentation](http://sox.sourceforge.net/sox.html), a low pass filter is called by the underlying sox library using a negative sign, e.g `sinc -4k`, however the code in dsp.py ommits this negative...
In the AudioEffectsChain, it's supposed to work when numpy array is an input since it sets up objects depending on the input format, however when I run the chain on...
Docstrings
It would be much easier to use this if each of the `AudioEffectsChain` effect methods had docstrings. Right now it's necessary to dig through the source code to find which...