1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 3, 2025 |
---|
#24 in #vst
Used in 7 crates
(4 directly)
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
- Implement Interfaces: Utilize provided traits to implement necessary functionality required by VST plugins.
- Handle MIDI and Parameter Changes: Leverage interfaces like
IMidiMapping
and parameter control methods for seamless integration and parameter automation. - 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