A Glicol live-coding VST3/CLAP plugin built with Rust and NIH-plug. Write Glicol DSP code, click "Update", and hear changes instantly.
Note: This is a hobby project for learning Rust and audio processing. Feedback is welcome, but know that it's very much a work in progress!
Phase 2 complete - live coding with Glicol engine and GUI work! Try effects like:
out: ~input >> mul 0.5- halve volumeout: ~input >> lpf 1000.0 1.0- low-pass filterout: ~input >> plate 0.3- plate reverb
# Clone with submodules
git clone --recursive https://github.com/your/glicol-verb.git
# Or if already cloned, init submodules
git submodule update --init --recursive
# Build plugin
cargo xtask bundle glicol_verb --releaseOutputs to target/bundled/.
This project uses git submodules for reference documentation:
vendor/glicol- Glicol source code for API referencevendor/baseview-latest- Patched baseview with macOS crash fix
This plugin requires a host application (DAW or plugin host) for testing. Recommended options:
- Carla (
brew install carla) - lightweight open-source plugin host - REAPER - full DAW, free to evaluate
Load target/bundled/glicol_verb.vst3 in your host of choice.
A synthetic guitar test file is included at test_audio/test_guitar.wav (5 seconds, Karplus-Strong synthesized E minor arpeggio). To regenerate:
cd tools/gen_test_audio && cargo run --releaseThe code here is MIT licensed, but the VST3 interface used by NIH-plug is GPLv3. Which implies that the compiled VST3 plugin needs to comply with the terms of the GPLv3 license. The CLAP interface does not drag GPLv3 along for the ride, so that's a way out if you can't deal with GPLv3 for some reason.