BEAMER
A Rust framework for building VST3, Audio Unit (AU), and CLAP audio plugins.
Named after the beams that connect notes in sheet music, Beamer links your DSP logic and WebView interface together, then projects them onto any surface through modern web UI. Write your plugin once, export to VST3 (all platforms), AU (macOS), and CLAP (planned).
[!NOTE] Beamer is pre-1.0 and under active development. Expect breaking changes between minor versions.
Why Beamer?
Built on Rust's guarantees. Where most plugin frameworks use C++, Beamer uses Rust. Memory and threading bugs become compile-time errors, not runtime crashes.
Derive macros do the heavy lifting. Define your parameters with #[derive(Parameters)] and Beamer generates host integration, state persistence, DAW automation, and parameter access traits. Focus on your DSP, not boilerplate.
Web developers build your UI. Beamer's WebView architecture (planned) lets frontend developers create modern plugin interfaces using familiar tools (HTML, CSS, JavaScript) while your audio code stays in safe Rust. Each team does what they do best.
For creative developers. Whether you're an audio engineer learning Rust or a Rust developer exploring audio, Beamer handles the plugin format plumbing so you can focus on what matters: making something that sounds great.
Quick Start
Beamer plugins use three structs for clear separation of concerns:
use *;
// 1. Parameters - pure data with derive macros
// 2. Descriptor - holds parameters (and optional state), describes plugin to host
// 3. Processor - prepared state, ready for audio
Three-Struct Pattern
Beamer plugins use three structs for clear separation of concerns:
*Parameters- Pure parameter definitions with#[derive(Parameters)]*Descriptor- Plugin descriptor that holds parameters and implementsDescriptor*Processor- Runtime processor created byprepare(), implementsProcessor
Two-Phase Lifecycle
Beamer uses a type-safe two-phase design that follows the Rust principle of making invalid states unrepresentable:
Descriptor::default() → Descriptor (unprepared, holds parameters)
│
▼ prepare(setup)
│
Processor (prepared, ready for audio)
│
▼ unprepare()
│
Descriptor (parameters preserved)
Why two types? Sample rate isn't known until the host calls setupProcessing(), but buffer allocation depends on it. Descriptor describes the plugin (parameters, bus layout, MIDI mappings); Processor is that description prepared for audio with allocated buffers. The compiler enforces that prepare() happens before process().
See ARCHITECTURE.md for detailed rationale.
| Setup Type | Use Case |
|---|---|
() |
Stateless plugins (gain, pan) |
SampleRate |
Most plugins (delay, filter, envelope) |
(SampleRate, MaxBufferSize) |
FFT, lookahead |
(SampleRate, MainOutputChannels) |
Surround, per-channel state |
For IDE autocomplete of all available types, use beamer::setup::*.
Examples
Effects
| Example | Description |
|---|---|
| gain | Simple stereo gain plugin. Demonstrates the three-struct pattern, #[derive(Parameters)], and dB scaling. |
| delay | Tempo-synced stereo delay with ping-pong mode. Shows EnumParameter, tempo sync via ProcessContext, and parameter smoothing. |
| compressor | Feed-forward compressor with soft/hard knee and sidechain input. Demonstrates BypassHandler with equal-power crossfade, set_active() for state reset, and auto makeup gain. |
Instruments
| Example | Description |
|---|---|
| synth | 8-voice polyphonic synthesizer with full ADSR envelope and lowpass filter. Features expressive MIDI: polyphonic aftertouch for per-note vibrato, channel aftertouch, pitch bend, and mod wheel controlling both vibrato depth and filter brightness. |
| midi-transform | MIDI processor that transforms notes and CC messages. Shows nested parameter groups, process_midi(), and various transform modes (transpose, remap, invert). |
See the examples for detailed documentation on each plugin.
MIDI Support
Beamer provides comprehensive MIDI support:
- Note On/Off with velocity, tuning, and note length
- Control Change with 14-bit resolution helpers
- Pitch Bend, Channel Pressure, Poly Pressure
- Program Change
- SysEx (configurable buffer size)
- Note Expression (MPE)
- RPN/NRPN decoding
- Chord and Scale info from DAW
- VST3 CC emulation via
MidiCcConfig- receive MIDI CC in DAWs that don't send raw CC events
Parameter Attributes
The #[parameter(...)] attribute supports:
| Attribute | Description |
|---|---|
id = "..." |
Required. String ID (hashed to u32 internally) |
name = "..." |
Display name in DAW |
default = <value> |
Default value |
range = start..=end |
Value range |
kind = "..." |
Unit type: db, hz, ms, seconds, percent, pan, ratio, linear, semitones |
group = "..." |
Visual grouping in DAW (flat access, grouped display) |
smoothing = "exp:5.0" |
Parameter smoothing (exp or linear) |
bypass |
Mark as bypass parameter (BoolParameter only) |
Visual Grouping
Use group = "..." for flat parameter access with DAW grouping:
// Access: parameters.cutoff, parameters.resonance, parameters.gain (flat)
// DAW shows collapsible "Filter" and "Output" groups
For nested structs with separate parameter groups, use #[nested(group = "...")].
Features
- Multi-format - VST3 (all platforms), AU (macOS), and CLAP (planned)
- Type-safe initialization - Two-phase lifecycle eliminates placeholder values and sample-rate bugs
- Format-agnostic core - Plugin logic is independent of format specifics
- 32-bit and 64-bit audio - Native f64 support or automatic conversion for f32-only plugins
- Multi-bus audio - Main bus + auxiliary buses (sidechain, aux sends, multi-out)
- Complete MIDI support - Full MIDI 1.0/2.0, MPE, Note Expression, SysEx
- Real-time safe - No heap allocations in the audio path
- State persistence - Automatic preset/state save and restore
- WebView GUI (planned) - Modern web-based plugin interfaces
Documentation
- ARCHITECTURE.md - Design decisions, threading model, guarantees
- REFERENCE.md - Detailed API reference
- EXAMPLE_COVERAGE.md - Example testing roadmap and feature coverage matrix
Platform Support
| Platform | Status |
|---|---|
| macOS (arm64) | Tested |
| Windows | Untested |
| Linux | Untested |
Crates
| Crate | Description |
|---|---|
beamer |
Main facade crate (re-exports everything) |
beamer-core |
Platform-agnostic traits and types |
beamer-vst3 |
VST3 wrapper implementation |
beamer-au |
AU wrapper (macOS) - AUv2 and AUv3 via shared C-ABI bridge |
beamer-clap |
CLAP wrapper (planned) |
beamer-macros |
Derive macros (#[derive(Parameters)], #[derive(EnumParameter)], #[derive(HasParameters)], #[derive(Presets)]) |
beamer-utils |
Internal utilities (zero external dependencies) |
Building & Installation
# Build all crates
# Build release
# Bundle VST3 plugin (native architecture, fastest for development)
# Bundle AUv2 plugin (macOS only)
# Bundle both formats and install to system plugin folders
# Bundle universal binary for distribution (x86_64 + arm64)
# Validate AU plugin (macOS)
By default, plugins are built for the native architecture (e.g., arm64 on Apple Silicon). Use --arch universal when building for distribution to support both Intel and Apple Silicon Macs.
License
MIT