nodi

Crates.ionodi
lib.rsnodi
version1.0.0
sourcesrc
created_at2021-09-06 20:44:00.051137
updated_at2024-01-07 12:10:44.145053
descriptionA library for playback and abstraction of MIDI files.
homepage
repositoryhttps://github.com/insomnimus/nodi
max_upload_size
id447695
size55,902
(insomnimus)

documentation

README

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.
Commit count: 84

cargo fmt