###### 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)
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up