https://github.com/giraugh/mynth
Toy modular synth in rust
https://github.com/giraugh/mynth
audio rust
Last synced: 2 months ago
JSON representation
Toy modular synth in rust
- Host: GitHub
- URL: https://github.com/giraugh/mynth
- Owner: giraugh
- Created: 2023-04-08T05:36:10.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-08T07:57:31.000Z (about 2 years ago)
- Last Synced: 2025-02-14T17:53:29.870Z (3 months ago)
- Topics: audio, rust
- Language: Rust
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mynth
Toy little modular synth in rust
### Play a stream
`cargo run` will play the audio stream
### Play audio recording
To play a file created using `Recording::save` you will need `ffmpeg`.
On OSX you can install it with homebrew
```bash
brew install ffmpeg
```Then use ffmpeg's `ffplay` tool to play it
```bash
ffplay -autoexit -f f32le -ar 48000 -showmode 1 my_recording.bin
```