1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 3, 2025 |
---|
#33 in #vst
Used in 8 crates
(6 directly)
640KB
6.5K
SLoC
Aloe VST Component Crate
Aloe VST Component provides a base framework for creating VST 3.0 plugins. This crate encapsulates foundational interfaces and structures for plugin and host communication, focusing on media processing and parameter control. Semantic abstractions of key VST concepts guide the user in implementing audio processing chains with efficiency.
Features
- Implements core VST 3.0 interfaces like
VstIComponent
,IEditController
, andIComponentHandler
. - Supports various bus configurations and formats through enums such as
VstMediaTypes
andVstBusDirections
. - Provides scalable I/O capabilities with interfaces like
IConnectionPoint
. - Facilitates parameter manipulation and host interaction using
IEditController
methods. - Offers high level of flexibility with traits and structures to extend any VST 3.0 plugin functionality.
Installation
Add the following to your Cargo.toml
to use Aloe VST Component in your project:
[dependencies]
aloe-vst-component = "0.1.0"
Example
use aloe_vst_component::*;
struct MyComponent {
// implements VstIComponent and other necessary traits
}
impl VstIComponent for MyComponent {
// Implement interface methods
}
// Example function to get bus
fn example_get_bus(component: &mut impl VstIComponent, bus_type: MediaType, direction: BusDirection) {
let count = component.get_bus_count(bus_type, direction);
// Further processing
}
Contributing
Contributions are welcome! Please fork the repository and submit a pull request with your improvements.
License
This project is licensed under the GPL-3.0 License.
This README was generated by an AI model and may not be 100% accurate, but it should be informative and helpful.
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
~14–23MB
~380K SLoC