#midi-file #midi #music #note #track #pitch #tonality

midia

A simple wrapper for writing the midi file easier

1 unstable release

0.1.1 Apr 26, 2024

#254 in Audio

Download history 103/week @ 2024-04-21 17/week @ 2024-04-28

120 downloads per month

MIT license

13KB
431 lines

MIDIA

A simple wrapper for writing the midi file easier.

Usage

fn main() {
    let mut writer = MidiWriter::new(TrackType::Single, 1, 120);
    let mut track = MidiTrack::new();
    track
        .set_bpm(120)
        .set_tonality(Tonality::G)
        .change_instrument(InstrumentType::AcousticGrandPiano)
        .note(0.5, Pitch::A4, 90)
        .note(0.5, Pitch::B4, 90)
        .note(2., Pitch::C5, 90)
        .note(0.5, Pitch::B4, 90)
    // ...
        .note(1., Pitch::F5, 90)
        .note(1., Pitch::E5, 90)
        .note(1., Pitch::D5, 90)
        .note(1., Pitch::C5, 90)
        .repeat(5);
    writer.add_track(track);
    writer.write("...");
}

No runtime deps