coremidi

CoreMIDI library for Rust built on top of the low-level bindings at coremidi-sys.

This library tries to be as transparent as possible to the original CoreMIDI framework, while being as rust idiomatic as possible. This means that if you already know CoreMIDI you will find very easy to start using it.

Please see the examples for an idea on how does it look like.

If you are looking for a portable MIDI library then you can look into: - midir - portmidi-rs

For handling low level MIDI data you may look into: - midi-rs - rimd

Please note that this is a work in progress project !

This version doesn't work because of a bug in coremidi-sys. Please see this PR for more information on an ongoing fix for it.

Installation

Add this to your Cargo.toml.

toml [dependencies] coremidi = "^0.0.1"

Examples

The examples can be run with:

sh cargo run --example send-notes

Roadmap