aetherdsp-midi 0.1.1

MIDI engine for AetherDSP — device routing, clock sync, and microtonal tuning table support
Documentation

aether-midi

crates.io docs.rs License: MIT

MIDI engine for AetherDSP — device routing, clock sync, and microtonal tuning.

Features

  • MIDI device routing — connect hardware controllers to graph nodes
  • MIDI clock — sync BPM to external MIDI clock source
  • Tuning tables — full microtonal support including Ethiopian scales (Tizita, Bati, Anchihoye), Arabic maqam, and custom frequency maps
  • Event system — typed MIDI events (NoteOn, NoteOff, CC, PitchBend, Clock)

Tuning systems

use aether_midi::tuning::TuningTable;

// Ethiopian Tizita scale
let tizita = TuningTable::ethiopian_tizita();

// Arabic Maqam Rast
let rast = TuningTable::arabic_maqam_rast();

// Custom — provide your own frequency ratios
let custom = TuningTable::from_ratios(&[1.0, 1.125, 1.25, 1.333, 1.5, 1.667, 1.875]);

License

MIT — see LICENSE