Nodi provides types and functions for playback and abstraction of MIDI files.
This crate works alongside the midly and midir crates. However you can implement your own MIDI player, instead of relying on midir.
- Time-map MIDI events.
- Join or merge multiple MIDI tracks.
- Play MIDI files.
- Split a MIDI track into measures/bars.
- Transpose a track.
Check out /examples/play_midi.rs
for a basic midi player.
I started developping this crate because I needed the features it now offers. Here are some real-world examples of nodi in action:
Features enabled by default:
hybrid-sleep
: A more accurate sleep, mixing regular sleep with spin locking efficiently. With this feature enabled the default implementations of timers in this crate will use this. Highly recommended for Windows users but it may also increase timing on other platforms.
Optional features:
midir
: Adds implementations ofConnection
formidir::MidiOutputConnection
.midir-jack
: Same withmidir
but uses the Jack backend.midir-winrt
: Same withmidir
but uses the WinRT backend.