#real-time-audio #midi #graph #audio #processing #real-time

aloe-audio-processor-graph

Aloe is a Rust crate providing an advanced audio processor graph system, facilitating the development of complex audio processing applications with support for multiple audio and MIDI node types and dynamic graph configurations. 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

#28 in #real-time-audio


Used in 3 crates (via aloe-audio)

GPL-3.0 license

2MB
19K SLoC

Aloe Audio Processor Graph Crate

Aloe is a comprehensive audio processing graph library in Rust, designed for creating intricate audio processing networks. With support for handling various audio and MIDI input and output nodes, it enables advanced music applications and digital signal processing tasks on audio streams with precision and console-style chain operations in real-time.

Key Features

  • Graph-Based Audio Processing: Construct versatile audio processing structures with nodes representing individual processors and connections defining data flow.
  • Input/Output Processing: Versatile support for audio and MIDI input/output nodes for comprehensive audio signal management.
  • Flexible Buffer Management: Advanced management of audio and MIDI buffers, supporting efficient rendering and mixing jobs.
  • Double Precision Processing: Sophisticated support for processing large audio streams using single and double precision models.

Getting Started

Installation

Add the crate to your Cargo.toml dependencies:

[dependencies]
aloe-audio-processor-graph = "0.1.0"

Usage

Here's a basic setup to illustrate the implementation of a simple audio processor graph:

use aloe_audio_processor_graph::{AudioProcessorGraph, AudioGraphIOProcessorIODeviceType};

fn main() {
    let mut graph = AudioProcessorGraph::default();
    let input_node_id = graph.add_node(AudioGraphIOProcessorIODeviceType::audioInputNode);
    let output_node_id = graph.add_node(AudioGraphIOProcessorIODeviceType::audioOutputNode);

    graph.add_connection(input_node_id, 0, output_node_id, 0).expect("Failed to connect nodes");
    
    graph.prepare_to_play(44100.0, 256);
    // Perform audio processing based on the graph setup
}

For more advanced usage and integration notes, refer to the documentation.

Licensing

Licensed under GPL-3.0.

Note: This README file was generated by an AI model and may not be 100% accurate. However, it should be a useful starting point.

Contributing

Contributions, issues, and feature requests are welcome! Feel free to check out the repository on GitHub.

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

~26–36MB
~587K SLoC