#vst #audio-processing #automation #audio #api-bindings #pluginparameters

aloe-vst-parameters

Aloe VST Parameters is a Rust crate facilitating advanced management of VST3 plugin parameters. It provides traits and structures for handling parameter automation, editing, and representation. 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

#27 in #vst

48 downloads per month
Used in 11 crates (7 directly)

GPL-3.0 license

280KB
3K SLoC

Aloe VST Parameters

Aloe VST Parameters is a Rust crate designed for advanced management and control of audio plugin parameters based on the VST3 framework. It provides a comprehensive set of traits and structures to effectively manage VST parameters in audio applications. This crate is equipped to serve developers constructing Digital Audio Workstations (DAWs), audio plugins, or any application interfacing with the VST3 API.

Features

  • Parameter Functionality: Provides traits for converting between normalized and plain values, managing parameters' string representation, and adjusting parameters' effective range.
  • Edit Controller Integration: Facilitates integration within hosts that leverage the IParameterFunctionName interface to automatically map parameters to UI controls like gain reduction meters, wet-dry knobs, and more.
  • Parameter Changes Handling: Implements robust methods for reporting parameter changes through IParameterChanges and IParamValueQueue, allowing precise automation curve manipulation.
  • Parameter Metadata: Supplies extensive parameter metadata information through structures including ParameterInfo, StringListParameter, and RangeParameter.

Installation

To include Aloe VST Parameters in your project, add the following to your Cargo.toml:

[dependencies]
aloe-vst-parameters = "0.1.0"

Usage

Below is a simple usage example demonstrating how to implement and utilize the IParameterFunctionName trait:

use aloe_vst_parameters::IParameterFunctionName;

struct MyController;

impl IParameterFunctionName for MyController {
    fn get_parameter_id_from_function_name(&mut self, unitid: UnitID, function_name: FIDString, paramid: &mut ParamID) -> tresult {
        // Implement your logic to associate function names with parameter IDs
    }
}

For a full set of examples and detailed API information, please refer to the crate documentation.

License

This project is licensed under the GPL-3.0 License. For more details, refer to the LICENSE file.

Contribution

Contributions are welcome! Please follow the guidelines outlined in the repository.

Disclaimer

This README.md file was generated by an AI model. While it aims to be comprehensive and accurate, consult the crate's documentation and source code for authoritative information.

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

~13–27MB
~375K SLoC