1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 3, 2025 |
---|
#6 in #vst3
49 downloads per month
Used in 6 crates
(3 directly)
265KB
2.5K
SLoC
Aloe VST Host
Aloe VST Host is a Rust library designed to facilitate communication between VST (Virtual Studio Technology) plugins and their respective hosts. It provides a range of wrapper interfaces enabling seamless integration of VST3 plugins with legacy VST2 and various digital audio workstation (DAW) environments such as AAX and AU. Through its comprehensive trait implementations, it allows developers to manage and process MIDI Polyphonic Expression (MPE) data, as well as handle host callbacks and attributes efficiently.
Features
- Interoperability: Supports transforming VST3 plugins to be compatible with VST2, AAX, and AU hosts.
- MPE Support: Implements VST3WrapperMPESupport for proficient MPE to note expression translation.
- Host Attribute Management: Utilizes the
HostAttribute
enum for handling various types of host attributes, including integers, floats, strings, and binary data. - Dynamic Plug Interface: Provides dynamic trait support for various plug interfaces ensuring broad compatibility across different host systems.
Installation
Add this to your Cargo.toml
:
[dependencies]
aloe-vst-host = "0.1.0"
Usage
Import the crate and leverage the implemented traits like IVst3ToVst2Wrapper
, IVst3ToAAXWrapper
, and others for creating a robust VST hosting application.
use aloe_vst_host::{IHostApplication, IVst3ToVst2Wrapper};
struct MyHostApplication;
impl IHostApplication for MyHostApplication {
fn get_name(&mut self, name: String128) -> tresult {
// Implementation here
}
fn create_instance(&mut self, cid: TUID, iid: TUID, obj: *mut *mut c_void) -> tresult {
// Implementation here
}
}
let my_host = MyHostApplication;
License
Licensed under GPL-3.0. See LICENSE for details.
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
~13–27MB
~378K SLoC