Name Description Size
callback.rs 958
client.rs 8394
devices.rs 395
endpoints
lib.rs ! This is a [CoreMIDI](https://developer.apple.com/reference/coremidi) library for Rust built on top of the low-level bindings [coremidi-sys](https://github.com/jonas-k/coremidi-sys). CoreMIDI is a macOS framework that provides APIs for communicating with MIDI (Musical Instrument Digital Interface) devices, including hardware keyboards and synthesizers. This library preserves the fundamental concepts behind the CoreMIDI framework, while being Rust idiomatic. This means that if you already know CoreMIDI, you will find very easy to start using it. Please see the [examples](https://github.com/chris-zen/coremidi/tree/master/examples) for getting an idea of how it looks like, but if you are eager to see an example, this is how you would send some note: ```rust,no_run extern crate coremidi; use std::time::Duration; use std::thread; let client = coremidi::Client::new("example-client").unwrap(); let output_port = client.output_port("example-port").unwrap(); let destination = coremidi::Destination::from_index(0).unwrap(); let note_on = coremidi::PacketBuffer::new(0, &[0x90, 0x40, 0x7f]); let note_off = coremidi::PacketBuffer::new(0, &[0x80, 0x40, 0x7f]); output_port.send(&destination, &note_on).unwrap(); thread::sleep(Duration::from_millis(1000)); output_port.send(&destination, &note_off).unwrap(); ``` If you are looking for a portable MIDI library then you can look into: - [midir](https://github.com/Boddlnagg/midir) (which is using this lib) - [portmidi-rs](https://github.com/musitdev/portmidi-rs) For handling low level MIDI data you may look into: - [midi-rs](https://github.com/samdoshi/midi-rs) - [rimd](https://github.com/RustAudio/rimd) 3612
notifications.rs 12534
object.rs 5562
packets.rs 26611
ports.rs 3511
properties.rs 20414