19 stable releases (4 major)

Uses old Rust 2015

4.0.6 May 14, 2021
4.0.4 Feb 18, 2021
4.0.1 Oct 4, 2020
3.1.0 Oct 18, 2019
0.2.0 Jan 22, 2018

#135 in Audio

Download history 118/week @ 2023-02-11 249/week @ 2023-02-18 10/week @ 2023-02-25 132/week @ 2023-03-04 99/week @ 2023-03-11 81/week @ 2023-03-18 146/week @ 2023-03-25 183/week @ 2023-04-01 152/week @ 2023-04-08 147/week @ 2023-04-15 39/week @ 2023-04-22 180/week @ 2023-04-29 137/week @ 2023-05-06 62/week @ 2023-05-13 57/week @ 2023-05-20 117/week @ 2023-05-27

403 downloads per month
Used in 2 crates (via lv2-midi)

MIT license

78KB
1.5K SLoC

WMIDI

Midi encoding and decoding library suitable for real-time execution.

crates.io docs.rs

License: MIT Build Status

Old Repo

Usage

use std::convert::TryFrom;

// Decoding messages from bytes.
fn handle_midi_message(bytes: &[u8]) -> Result<(), wmidi::FromBytesError> {
    let message = wmidi::MidiMessage::try_from(bytes)?;
    if let wmidi::MidiMessage::NoteOn(_, note, val) = message {
        let volume = u8::from(val) as u8 / 127.0;
        println!("Singing {} at volume {}", note, volume);
    }
    Ok(())
}

// Encoding messages to bytes.
fn midi_to_bytes(message: wmidi::MidiMessage<'_>) -> Vec<u8> {
    let mut bytes = vec![0u8; message.bytes_size()];
    message.copy_to_slice(bytes.as_mut_slice()).unwrap();
    bytes
}

Testing & Benchmarking

  • Build with cargo build.
  • Test with cargo test.
  • Benchmark with cargo bench. The results will be under ./target/criterion/report/index.html.

Changelog

4.0.0

  • New ControlFunction type which simply wraps a U7.
  • Constants and documentation for all ControlFunction values.
  • Renumber Note enums/consts to be more consistent with midi; for example, C0 is now C1.

3.1.0

  • Rename MidiMessage::wire_size() to MidiMessage::bytes_size().
  • Introduce MidiMessage::copy_to_slice() method.

3.0.0

  • Instances of U7 and U14 now have bounds checking.
  • Note is now an enum instead of a u8. Can be converted with Note::try_from and u8::from.

No runtime deps