1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 3, 2025 |
---|
#129 in #midi
Used in 2 crates
445KB
3.5K
SLoC
aloe-au-midi
aloe-au-midi
is a Rust library offering an interface for integrating MIDI events with Audio Unit components. It provides robust functionalities to handle different types of MIDI messages, including note, control, and system exclusive (SysEx) messages.
Key Features
- MIDI Event Handling: Efficiently process and dispatch various MIDI events such as note on/off, control change, and pitch wheel.
- MIDI System Exclusive (SysEx): Manage SysEx messages for advanced MIDI communications.
- Property Management: Delegate functions for getting and setting Audio Unit properties, critical for interaction with MIDI map managers and handling property changes.
- Audio Unit Integration: Suitable for applications requiring low-level MIDI handling in conjunction with Audio Unit bases for Mac OS X.
Technical Overview
The core functionality centers around the AUMidiBaseInterface
trait, which describes methods for MIDI handling and Audio Unit interaction. Key methods include:
midi_event
andsys_ex
: To handle incoming MIDI status and data.handle_midi_event
andhandle_non_note_event
: Specialized callbacks for note-specific and other event types.get_midi_map_manager
: Access MIDI map management for parameter mappings.
Getting Started
To include aloe-au-midi
in your project, add the following to your Cargo.toml
:
[dependencies]
aloe-au-midi = "0.1.0"
Example Usage
use aloe_au_midi::AUMidiBaseInterface;
struct MyMidiHandler;
impl AUMidiBaseInterface for MyMidiHandler {
// Implement trait methods as needed...
}
fn main() {
let mut handler = MyMidiHandler;
// Handle your MIDI logic...
}
License
This project is licensed under the GPL-3.0 License.
Repository
Access the repository at GitHub for more information.
This README was generated by an AI model and may not be 100% accurate; however, it is designed to provide useful information.
This crate is a translation of the JUCE module.
JUCE is a c++ software framework for developing high performance audio applications.
Usage falls under the GPLv3 as well as the JUCE commercial license.
See github.com/juce-framework/JUCE and the JUCE license page for details.
This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.
Dependencies
~28–39MB
~627K SLoC