rustysynth icon indicating copy to clipboard operation
rustysynth copied to clipboard

A SoundFont MIDI synthesizer written in pure Rust

Results 4 rustysynth issues
Sort by recently updated
recently updated
newest added

For the integration in applications, a client will need to know the offset of notes being played so they can update a UI. Can one register a listener/callback somewhere to...

Hi, thank you for this great work! I have been waiting for a proper Rust SF2+MIDI synth. It will be perfect for [parture.org](https://parture.org) Would it be possible to assemble a...

This is awesome! Does this work on embedded / microcontrollers ? Like Raspberry Pi Pico or something? What's the smallest/simplest chip you've run this on?

`Synthesizer::note_on`, `Synthesizer::note_off`, `Synthesizer::process_midi_message` and friends expect input parameters that are a byte each, i.e. `u8` or `i8`. However, currently, they all take `i32`, making it difficult to guess what ranges...