1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 3, 2025 |
---|
#4 in #vst3
Used in 2 crates
(via aloe-ex-plugins)
4.5MB
42K
SLoC
Aloe VST3
Aloe VST3 is a Rust crate for creating VST3 audio plugins. It enables seamless integration with digital audio workstations (DAWs) that support the VST3 plugin format.
Designed with a focus on performance and extendibility, Aloe VST3 provides comprehensive trait implementations and utility structures to facilitate plugin creation.
Features include a robust interface for MIDI event handling, component management, and parameter synchronization. Advanced configurations for bus arrangements and sample processing ensure compatibility across various audio environments.
Usage
To utilize Aloe VST3 in your audio plugin development:
-
Add
aloe-vst3
as a dependency in your Cargo.toml:[dependencies] aloe-vst3 = "0.1.0"
-
Implement modules using provided traits like
DescriptionFactoryInterface
,PerformOnDescription
, andSetIComponentHandler
.
An example of initializing a VST3 component:
use aloe_vst3::{DescriptionFactoryInterface, PerformOnDescription};
struct MyPlugin;
impl DescriptionFactoryInterface for MyPlugin {}
impl PerformOnDescription for MyPlugin {
fn perform_on_description(&mut self, description: &mut PluginDescription) -> Result<(), ()> {
// Custom logic here
Ok(())
}
}
-
Handle MIDI and audio processing through
MidiEventList
andProcessData
respectively, ensuring thread-safe operations.fn process_audio(&mut self, data: &mut ProcessData) { // Processing implementations here }
Features
- MIDI Handling: Robust support for MIDI input and output.
- Component Management: Traits like
SetIComponentHandler
andComponentRestarterListener
manage plugin lifecycle. - Parameter Management: Efficient caching and synchronization of plugin parameters.
- Cross-Platform: Supports Windows, macOS, and Linux/BSD environments.
Categories
- game-development
- multimedia
- network-programming
For more technical details and usage guidelines, please refer to the official GitHub repository.
Disclaimer: This README 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
~46MB
~816K SLoC