A suite of LV2 plugins for real-time spectral noise reduction, built on the libspecbleach library.
- Manual capture noise reduction: Typical noise reduction where you capture a noise profile.
- Adaptive noise reduction: Automatic noise suppression, optimized for voice (low latency).
- Adjustable parameters: Reduction amount, smoothing, whitening, and transient protection.
- Residual listening: Hear exactly what is being removed.
- Soft bypass: Cross-faded bypass to avoid clicks.
- State saving: Noise profiles are saved with your host session.
Binaries for Linux, macOS, and Windows are provided in the GitHub Releases page. Extract the folder to your LV2 plugins directory:
- Linux:
~/.lv2/or/usr/lib/lv2/ - macOS:
~/Library/Audio/Plug-Ins/LV2/or/Library/Audio/Plug-Ins/LV2/ - Windows:
%COMMONPROGRAMFILES%\LV2\
Important
macOS Users: Due to Gatekeeper security, you might need to remove the "quarantine" attribute after copying the plugin manually. If the plugin fails to load in your DAW, run one of the following commands in your terminal:
For User folder:
xattr -rd com.apple.quarantine ~/Library/Audio/Plug-Ins/LV2/nrepellent.lv2For System folder:
sudo xattr -rd com.apple.quarantine /Library/Audio/Plug-Ins/LV2/nrepellent.lv2Requirements:
- Meson build system >= 0.60.0 & Ninja
- C Compiler (GCC/Clang)
- LV2 development headers
pkg-config
Build:
git clone https://github.com/lucianodato/noise-repellent.git
cd noise-repellent
# Configure build
meson setup build --buildtype=release
# Compile
meson compile -C build
# Install (sudo may be required)
meson install -C buildBuild Options:
You can configure the build options using -Doption=value:
custom_warning_level: 0-3 (default: 2). Controls compiler warning verbosity.treat_warnings_as_errors: Treat compiler warnings as errors (default: false).enable_sanitizers: Enable sanitizers for debug builds (default: false).sanitize_address: Enable address sanitizer (only if enable_sanitizers is true) (default: true).sanitize_undefined: Enable undefined behavior sanitizer (only if enable_sanitizers is true) (default: true).lv2dir: Install directory for LV2 bundles (absolute path or relative to prefix) (default: '').force_bundled_libspecbleach: Force use of bundled libspecbleach instead of system version (default: false). Enable this to ensure API compatibility when building from source.static_libspecbleach: Link libspecbleach and its internal dependencies (like FFTW) statically into the plugins (default: true). This creates self-contained binaries that don't depend on external shared libraries. Set tofalseif you are a packager and prefer to use a shared system library.libspecbleach_libdir: Directory where libspecbleach is installed (used for RPATH when using system libspecbleach). Leave empty for automatic detection (pkg-config libdir, then Meson libdir). Useful when libspecbleach is installed to a non-standard location.
Example for a self-contained static build:
meson setup build --buildtype=release -Dstatic_libspecbleach=true -Dforce_bundled_libspecbleach=true
meson compile -C buildPlease refer to the Project Wiki for detailed usage instructions.
Contributions are welcome! Please read CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.
This project is licensed under the LGPL-3.0 License - see the LICENSE file for details.



