The Patchbay_

Pedalboard

Fast Python library for audio effects and VST3/AU plugin hosting, built on JUCE by Spotify.

LanguagePython
CategorySynthesis & DSP
LicenseGPL-3.0
PlatformsmacOS Windows Linux
Installpip install pedalboard
First released2021
MaintainedYes
LinksWebsite · Source

Strengths

Limitations

Best for

Batch audio processing, applying effects, and hosting VST/AU plugins from Python.

Minimal example

from pedalboard import Pedalboard, Reverb
from pedalboard.io import AudioFile
board = Pedalboard([Reverb(room_size=0.5)])
with AudioFile("in.wav") as f:
    out = board(f.read(f.frames), f.samplerate)

Alternatives to Pedalboard

pyopydubCsoundPure Data

← Back to all tools