#midi #music #smf #encoding

nodi

A library for playback and abstraction of MIDI files

31 releases (1 stable)

1.0.0 Jan 7, 2024
0.19.2 Jun 13, 2022
0.18.1 Jun 8, 2022
0.14.0 Mar 31, 2022
0.13.2 Oct 18, 2021

#116 in Audio

Download history 3/week @ 2023-12-30 107/week @ 2024-01-06 28/week @ 2024-02-24 5/week @ 2024-03-02 8/week @ 2024-03-09 1/week @ 2024-03-16 61/week @ 2024-03-30 10/week @ 2024-04-06

72 downloads per month
Used in 3 crates

MIT license

32KB
697 lines

Nodi

Build Status crates.io docs.rs

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.

Features

  • Time-map MIDI events.
  • Join or merge multiple MIDI tracks.
  • Play MIDI files.
  • Split a MIDI track into measures/bars.
  • Transpose a track.

Examples

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:

  • midnote: An accessible MIDI note viewer/ player.
  • plmidi: A MIDI player for the command line.

Crate Features

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 of Connection for midir::MidiOutputConnection.
  • midir-jack: Same with midir but uses the Jack backend.
  • midir-winrt: Same with midir but uses the WinRT backend.

Dependencies

~0.2–30MB
~377K SLoC