#processor #audio-processing #audio #gui-integration #valuetree #parametermanagement

aloe-audio-processor-value-tree

A Rust crate managing audio processor states via a hierarchical value tree, supporting parameter synchronization with GUI components and offering undo/redo state management. 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

#73 in #audio-processing

Download history 52/week @ 2025-03-29

52 downloads per month
Used in 4 crates (3 directly)

GPL-3.0 license

1.5MB
14K SLoC

Aloe Audio Processor Value Tree

Aloe Audio Processor Value Tree is a Rust crate that offers a comprehensive framework for managing audio processor state through a value tree architecture. It facilitates the synchronization and control of audio parameters using a clear and modular structure, allowing for grouped parameter management and seamless integration with GUI components.

Overview

The core concept revolves around mapping audio parameters to a hierarchical ValueTree, enabling extensive control over the processor's state. The crate provides robust abstractions for creating, managing, and attaching parameters in an efficient manner. It exposes interfaces to register listeners for parameter changes and update the underlying ValueTree accordingly.

Key Features

  • Parameter Management: Organize RangedAudioParameters in hierarchical AudioProcessorParameterGroups, facilitating batch management.
  • GUI Integrations: Connect parameters directly to GUI components such as sliders and buttons, ensuring real-time synchronization.
  • Undo/Redo Support: Leverage optional undo management for comprehensive state control.
  • State Serialization: Easily clone and replace state trees for seamless state management across threads.

Usage

Implementations include:

  • AudioProcessorValueTreeState: Central entity managing parameter states for an audio processor.
  • AudioProcessorValueTreeStateParameter: Facilitates creation and handling of parameters with metadata support.
  • Attachment Classes: Seamlessly connect GUI components with parameters to reflect dynamic state changes.
use aloe_audio_processor_value_tree::*;

let mut processor = AudioProcessor::new();
let undo_manager = UndoManager::new();
let parameter_layout = AudioProcessorValueTreeStateParameterLayout::default();
let apvts = AudioProcessorValueTreeState::new_with_parameter_layout(&mut processor, &undo_manager, "PARAMETERS", parameter_layout);

Installation

Add the following to your Cargo.toml:

[dependencies]
aloe-audio-processor-value-tree = "0.1.0"

Author

Developed and maintained by klebs.

License

Licensed under the GPL-3.0.


Disclaimer: This README.md 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

~28–42MB
~617K SLoC