###### tags: `jptw` `thesis` `technology` `python` `sound effect` # Notes for Processing Sound Effects in Python ## Installation ``` $ pip install pysndfx ``` ## Usage ```python # Import the package and create an audio effects chain function. from pysndfx import AudioEffectsChain fx = ( AudioEffectsChain() .highshelf() .reverb() .phaser() .delay() .lowshelf() ) # Apply the effects and return the results as a ndarray. infile = 'my_audio_file.wav' y = fx(infile) ``` > Ref: > [1] [carlthome/python-audio-effects](https://github.com/carlthome/python-audio-effects) > [2] [2d-3d Audio Converter | Victor Taksheyev](https://victortaksheyev.github.io/portfolio/pages/audio.html)