#midi #plugin #vst #host #audio

nightly aloe-vst-edit

A Rust implementation of VST 3.x plugin editor interfaces, handling parameters, MIDI mappings, context menus, and host interactions. 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

#24 in #vst


Used in 7 crates (4 directly)

GPL-3.0 license

460KB
5K SLoC

Aloe VST Edit

Aloe VST Edit provides a Rust implementation of a VST 3.x plugin editor interface. It wraps and extends core interfaces to facilitate handling parameters, MIDI mappings, context menus, and host interactions.

Key Features

  • Restart Component: Implements RestartFlags to manage component restarts.
  • MIDI Mapping Interface: Manages MIDI controllers to ensure proper host integration for automation and mapping.
  • Context Menu Integration: Facilitates creating context menus, allowing plugins to interact seamlessly with the host environment.
  • Edit Controller Extensions: Provides capabilities for managing parameter edits, group edits, and host notifications.
  • Bus Activation: Requests activation or deactivation of specific audio buses within the host.

Modules

  • Interfaces:

    • IComponentHandler, IComponentHandler2, IComponentHandler3: Manage host-plugin interactions.
    • IProgress: Helps in communicating progress for tasks from the plugin to the host.
  • Structs:

    • EditController: Contains the base component handler and extension features for handling plugin parameter operations.
    • ProgramList: Manages program lists and related operations, including pitch name handling.

Usage

  1. Implement Interfaces: Utilize provided traits to implement necessary functionality required by VST plugins.
  2. Handle MIDI and Parameter Changes: Leverage interfaces like IMidiMapping and parameter control methods for seamless integration and parameter automation.
  3. Manage Context Menus: Create and customize context menus using the IContextMenu trait in conjunction with host interfaces.

Example Usage:

fn main() {
  // Assuming appropriate trait implementations and setup
  let mut edit_controller = EditController::new();
  // Customize and interact with VST components using available APIs
}

Installation

Add this crate to your Cargo.toml:

dependencies = {
    aloe-vst-edit = "0.1.0"
}

Contributing

Please refer to the repository for contributing information.

License

This project is licensed under the GPL-3.0 License. See the LICENSE file for details.

PLEASE NOTE: This README.md file was generated by an AI model and may not be 100% accurate. However, it should provide a good understanding of the crate's capabilities and usage.

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

~14–23MB
~383K SLoC