-
Notifications
You must be signed in to change notification settings - Fork 0
Built in AudioFX
mzuelch edited this page Jan 25, 2026
·
4 revisions
PATCHBAY ships with a small set of built-in AudioFX implemented as regular plugins (pure NumPy).
They live in the repository/package under plugins/ and are auto-discovered like any other effect.
See also:
- AudioFX Plugins (discovery, ordering, per-stream persistence)
- AudioFX Plugin API (how to implement your own)
| plugin_id | Display name (UI) | Typical use | Details |
|---|---|---|---|
normalize |
Normalisierung | peak-normalize a stream to a target peak | [[AudioFX/Normalize |
compressor |
Kompression | light dynamics control on target/residual | [[AudioFX/Compressor |
declicker |
De-Klicker (Impuls-/Click-Entfernung) | remove short clicks/pops on residual stems | [[AudioFX/De-Clicker |
highpass |
Hochpassfilter | remove rumble/handling noise in residual | [[AudioFX/High-pass Filter |
lowpass |
Tiefpassfilter | tame hiss / high-frequency artefacts | [[AudioFX/Low-pass Filter |
noise_reduction |
Rauschunterdrückung (spektral) | attenuate steady noise (hiss/hum) | [[AudioFX/Spectral Noise Reduction |
Notes:
-
plugins/_template_gain.pyis shipped as a template and is ignored by discovery because the filename starts with_. Rename it (remove the underscore) if you want to use it as a real plugin.
Last updated: 2026-01-24
PATCHBAY • MIT License • Wiki content is intended to match PATCHBAY 0.1.x.
- Home
- Installation
- Quickstart
- User Guide
- Input & Anchors
- Description & Run
- Output
- Export & Files
- Runtime Settings
- Settings & Persistence
- FAQ
- Troubleshooting
- Architecture
- Data Flow
- Backend Interface
- Anchor Algorithms
- Chunking & Reconstruction
- Logging & Debugging
- Parameter Persistence