A simple library for chaining together multiple audio dsp processors/generators, written in Rust!
Here are two examples of using dsp-chain to create a very basic synth and an oscillating volume.
Use cases for dsp-chain include: - Designing effects. - Creating an audio mixer. - Making a sampler. - Writing a dsp backend for a DAW. - Any kind of modular audio synthesis/processing.
Add dsp-chain to your Cargo.toml dependencies like so:
[dependencies]
dsp-chain = "*"
dsp-chain uses PortAudio as a cross-platform audio backend. The rust-portaudio dependency will first try to find an already installed version on your system before trying to download it and build PortAudio itself.
MIT - Same license as PortAudio.