xpans_spe_midi 0.1.2

Wraps xpans Spatial Property Exchange (SPE) messages in MIDI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*!
SPE MIDI allows for sending and receiving spatial properties of virtual audio
sources through MIDI SysEx, introducing potential for spatially-aware
processing and adaptive rendering in a digital audio workflow.
*/
#![no_std]
mod message;
mod midi;
mod value;
pub use crate::message::{read_message, write_message};

/// Re-export of xpans SPE
pub mod spe {
    pub use xpans_spe::*;
}