#midi #audio #api-bindings #rust #virtualinstrument #musicdevice

aloe-au-device

Provides a foundational library for managing virtual music devices using Rust, encompassing MIDI event handling, SysEx data processing, property management, note triggering, and more for audio unit components. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 3, 2025

#133 in #midi


Used in aloe-au

GPL-3.0 license

370KB
3K SLoC

aloe-au-device

Overview

aloe-au-device offers a foundational library for managing virtual music devices using Rust. This crate is designed to handle MIDI events, SysEx data, property management, note handling, and more—integrating effectively with audio unit components. It provides advanced capabilities for creating and manipulating audio processing chains, setting a robust framework for developers dealing with audio synthesis and manipulation in music applications.

Features

  • MIDI Event Management: Capture and process MIDI events with fine granularity.
  • SysEx Data Handling: Send and receive System Exclusive messages across devices.
  • Property Handling: Easily get and set properties relating to audio units and music devices.
  • Note Control: Comprehensive note-on and note-off handling with adjustable parameters.

Usage

The crate encapsulates the core MusicDeviceBaseInterface trait, bringing together a suite of functionalities for audio device control.

use aloe_au_device::MusicDeviceBaseInterface;

// Implement the `MusicDeviceBaseInterface` for your custom struct.
struct MyMusicDevice;

impl MusicDeviceBaseInterface for MyMusicDevice {
    fn midi_event(&mut self, in_status: u32, in_data1: u32, in_data2: u32, in_offset_sample_frame: u32) -> OSStatus {
        // Implementation goes here
    }
    // Other method implementations...
}

Installation

Add the following dependency to your Cargo.toml to start using aloe-au-device in your project:

[dependencies]
aloe-au-device = "0.1.0"

License

aloe-au-device is licensed under the GPL-3.0 license. Please see the LICENSE file in the repository for more information.

Contributing

Contributions are welcome via GitHub. Feel free to open issues or pull requests.

Disclaimer

This README.md file was generated by an AI model and may not be 100% accurate; however, it should provide a good foundation for understanding and using the crate.

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
~628K SLoC