1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 4, 2025 |
---|
#4 in #vst3
Used in 2 crates
4.5MB
38K
SLoC
Aloe VST Plugin Client VST3
Aloe VST Plugin Client VST3 is a robust Rust library designed for efficient interaction and integration with VST3 interfaces. This crate leverages advanced Rust concepts and idiomatic patterns to effectively manage VST3 plugins' life cycle, parameter manipulation, and interface interaction. It is optimized for high-performance audio processing workflows typically encountered in professional audio software environments.
Features
- Defines and manipulates VST3 plugin parameters through Rust's safe and performant abstractions.
- Provides utilities for interfacing with
VstIHostApplication
and managing audio buffers of varying bit depths. - Supports handling of MIDI controller assignments, facilitating complex MIDI interfacing.
- Includes robust mechanisms for memory management via compile-time and runtime features.
Getting Started
Add the crate to your Cargo.toml
:
[dependencies]
aloe-vst-plugin-client-vst3 = "0.1.0"
Use it within your Rust code:
use aloe_vst_plugin_client_vst3::{AloeAudioProcessorInternalParameters, AudioBusPointerHelper};
fn main() {
// Implement your audio processor logic here
}
Usage
This crate exposes traits and structs meant for creating and manipulating VST3 plugins. Users can create instances of AloeAudioProcessor
and interact with host applications through VST3's CreateFunction
type alias to bind plugin functionality.
Example
// Example showing basic usage of AloeAudioProcessor
use aloe_vst_plugin_client_vst3::{AloeAudioProcessor, CreateFunction};
let my_processor = AloeAudioProcessor::new(/* Plugin Interface */);
// Configure your processor, connect to host, etc.
Advanced Usage
For complex applications involving MIDI and custom parameter mapping, users should implement traits such as ChooseBufferHelper
and AudioBusPointerHelper
. This allows fine-grained control over audio data handling.
Contributing
Contributions via pull requests are welcome. Please review the contributing guidelines in the repository.
License
This crate is licensed under the GPL-3.0 license. See the LICENSE file in the repository for more details.
Acknowledgment
Special thanks to all the contributors and the open-source community for providing valuable feedback and improvements.
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
~51MB
~870K SLoC