#midi #audio-processing #plugin #processing #plugin-interface

aloe-audio-interface

Aloe Audio Interface is a comprehensive Rust crate designed to facilitate intricate interactions with audio processing and MIDI data in plugin contexts. It supports precise audio routing, MIDI message handling, and various audio processing precision models. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 2, 2025

#9 in #plugin-interface

44 downloads per month
Used in 110 crates (46 directly)

GPL-3.0 license

2.5MB
21K SLoC

Aloe Audio Interface

Aloe Audio Interface is a Rust crate designed for the intricate task of interfacing with audio processing plugins. It abstracts a myriad of audio processing interfaces and tools necessary for managing both audio and MIDI data. This crate is especially useful for developing audio applications that require precise control over the audio processing pipeline.

Key Features

  • Robust Audio Processing Interfaces: Wraps a wide spectrum of audio processing components like AudioProcessor, AudioChannelSet, and AudioPluginInstanceInterface.
  • Comprehensive MIDI Support: Handles various MIDI operations including message construction, MIDI event processing, and MIDI machine control commands.
  • Flexible Audio Graph Integration: Allows for the construction and manipulation of audio processing graphs, facilitating complex audio routing and processing scenarios.
  • Precision Control: Engineered with precision in mind, supporting both single and double precision floating-point processing for advanced audio computations.

Getting Started

To start using Aloe Audio Interface, add the following dependency to your Cargo.toml:

[dependencies]
aloe-audio-interface = "0.1.0"

Examples

Building an Audio Processor

use aloe_audio_interface::AudioProcessorInterface;

struct MyAudioProcessor;

impl AudioProcessorInterface for MyAudioProcessor {
    // Implement required methods here.
}

Handling MIDI Events

use aloe_audio_interface::{MidiMessageInterface, IsTrackMetaEvent};

struct MidiEvent;

impl IsTrackMetaEvent for MidiEvent {
    fn is_track_meta_event(&self) -> bool {
        // Implementation here.
    }
}

Traits Overview

  • AudioProcessorInterface: Core interface for audio processors.
  • MidiMessageInterface: Central to MIDI message handling.
  • AudioChannelSetInterface: Abstracts audio channel configurations.

Contributing

Contributions are welcome. Please see the repository instructions on GitHub for more details.


This README file 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. designed specifically for rust projects.

Dependencies

~25–38MB
~578K SLoC