#midi #audio-processing #dispatch #factory #audio #processing

aloe-au-dispatch

A Rust crate facilitating audio unit method dispatch and factory patterns for dynamic audio processing and MIDI handling. 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

#42 in #factory


Used in 3 crates (2 directly)

GPL-3.0 license

98KB
768 lines

aloe-au-dispatch

A Rust crate for interfacing with audio unit components, providing a sophisticated hierarchical lookup system for audio methods and component factories. This crate is designed for use in intricate audio applications where dynamic audio processing and MIDI interaction are essential.

The aloe-au-dispatch library allows developers to leverage Audio Unit (AU) components through defined lookup tables and factories. By utilizing generic factory patterns, this crate abstracts complex AU method routing tasks for efficient audio processing.

Key Features

  • Hierarchical Lookups: The crate provides multiple lookup structures (AUBaseLookup, AUOutputLookup, etc.) for resolving audio component methods based on selectors.
  • Factory Patterns: Structure audio component creation through AUBaseFactory, aiding in organized and scalable application design.

Usage

To get started with aloe-au-dispatch, include it as a dependency in your Cargo.toml:

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

Structure your project to utilize method lookup features via the provided interfaces. Implement diverse audio processing techniques based on the modular lookup architecture.

use aloe_au_dispatch::{AUBaseLookup, AUBaseFactory, AudioComponentMethod};

fn main() {
    // Example of initializing a lookup component
    let mut lookup = AUBaseLookup {};
    // Work with audio components
    if let Some(method) = lookup.lookup(kAudioUnitRenderSelect as i16) {
        // Execute audio processing method
    }
    // Utilize factories for audio component instantiation
}

Repository

Find the source code and contribute at GitHub.


This README was generated by an AI model and may not be 100% accurate. However, it should be pretty good.

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.

Dependencies

~27–38MB
~634K SLoC