lyd

lyd (the Norwegian/Danish word for audio) is a rust library that offers an audio graph, nodes, and message system for dynamic audio/music control including node adding, removing and modifying.

read more about the philosophy of lyd in this blog post(wip).

usage

```rust use lyd::{context, node::*};

fn main() { let mut ctx = context().frames(128).channels(2).sr(44100); ctx.addsig("output", vec![sinosc().freq("~fm"), mul(0.1)]); ctx.addsig("~fm", vec![sinosc().freq(blackbox(200.)), mul(300.), add(600.)]); ctx.nextblock(); println!("output buffers: {:?}", ctx.buffers.get("output").unwrap()); } ```

more in the examples folder.

contribution

if you can contribute a node, that would be great!

follow the procedure here.

besides that, bug report and feature suggestions are welcomed.