https://github.com/paulbatchelor/boingboingboing
Audio DSP library for musical applications, written in Rust.
https://github.com/paulbatchelor/boingboingboing
Last synced: about 2 months ago
JSON representation
Audio DSP library for musical applications, written in Rust.
- Host: GitHub
- URL: https://github.com/paulbatchelor/boingboingboing
- Owner: PaulBatchelor
- License: bsd-2-clause
- Created: 2022-02-04T14:21:42.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T19:14:59.000Z (about 1 year ago)
- Last Synced: 2025-04-12T02:05:07.136Z (about 2 months ago)
- Language: Rust
- Size: 28.3 KB
- Stars: 25
- Watchers: 6
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Boing Boing Boing
Audio DSP library for musical applications, written in Rust.## Building Examples
Be sure to build the library:```
$ cargo build
```Build the isorhythms example:
```
$ cargo build --example isorhythms
```Run it:
```
$ ./target/debug/examples/isorhythms
```This will produce a file in the top-level directory
called "out.bin", which is a raw binary file with
32-bit floating point values. A tool like sox can be
used to convert this raw data into a WAV file:```
$ sox -t raw -r 44100 -e floating-point -c 1 test.bin -b 32 out.wav
```## Roadmap
Boing3 is still in very early development. The goal right
now is to get it working with a similar functionality and
scope to sndkit. This includes the set of DSP algorithms,
the graforge library for constructing sounds, and a API
layer that sits on top of graforge and the DSP.- [ ] Port initial set of sndkit DSP algorithms
- [ ] Port graforge functionality
- [ ] Port sndkit API functionalityNote that there are no plans to port LIL (the embedded
scripting language included in sndkit), or have any
integrated scripting language included in Boing3. Any such
bindings will be declared out of scope.### DSP algorithms
- [ ] osc
- [ ] fmpair
- [ ] rline
- [ ] peakeq
- [x] bigverb
- [ ] dcblocker
- [ ] vardelay
- [ ] phasewarp
- [ ] modalres
- [ ] bitnoise
- [ ] chaosnoise
- [ ] oscf
- [ ] bezier
- [ ] expmap
- [ ] phsclk
- [ ] phasor
- [ ] biramp
- [ ] scale
- [ ] rephasor
- [ ] smoother
- [ ] metro
- [ ] expon
- [ ] chorus
- [ ] bitosc
- [ ] env
- [ ] glottis
- [ ] tract
- [x] blep
- [ ] vowel
- [ ] vowshape
- [ ] clkphs
- [x] butterworth
- [ ] sparse
- [ ] tseq
- [ ] adsr
- [ ] tgate
- [ ] tblin
- [ ] trand
- [ ] crossfade
- [ ] tsmp
- [ ] qgliss
- [ ] tdiv
- [ ] shelf
- [ ] lpf
- [ ] envar
- [ ] euclid
- [ ] gtick### Graforge API
- [ ] buffer
- [ ] buffer pool
- [ ] stack
- [ ] cable
- [ ] node
- [ ] patch
- [ ] subpatch### sndkit core API
- [ ] compute block
- [ ] compute seconds
- [ ] stack push/pop
- [ ] RNG