#vst #audio #audio-plugin #plugin #cross-platform

aloe-vst-plugin-client-vst

Aloe VST Plugin Client VST facilitates the creation of VST audio plugins for cross-platform, high-performance digital audio processing and seamless host interactions. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 4, 2025

#20 in #vst


Used in 2 crates

GPL-3.0 license

3.5MB
31K SLoC

Aloe VST Plugin Client VST

Aloe VST Plugin Client VST is a crate designed for constructing VST audio plugins, enabling seamless integration with digital audio workstations. It leverages the power of the Virtual Studio Technology (VST) SDK to host, manipulate, and control audio processing modules dynamically.

Features

  • Provides rich abstractions for VST plugin capabilities.
  • Supports cross-platform functionality, with specialized commands for Windows, MacOS, Linux, and BSD systems.
  • Implements robust audio processing routines using both single and double precision to cater to various performance needs.
  • Offers comprehensive hosting capabilities for audio processor editors, mimicking native look and feel within host applications.
  • Integrates smoothly with Ableton Live, offering host-specific command handling.

Getting Started

To use this crate, ensure your development environment is set up with the Rust toolchain and VST SDK dependencies. Include aloe-vst-plugin-client-vst in your Cargo.toml:

[dependencies]
aloe-vst-plugin-client-vst = "0.1.0"

Usage Example

This VST client can be easily integrated into existing audio processing solutions. Define an AudioProcessor within your application and pair it with an AloeVSTWrapper to interface directly with your host environment:

use aloe_vst_plugin_client_vst::{AloeVSTWrapper, Vst2AudioMasterCallback};

fn create_plugin(audio_master: Vst2AudioMasterCallback) -> AloeVSTWrapper {
    let processor = create_audio_processor();
    AloeVSTWrapper::new(audio_master, Box::new(processor))
}

Contributing

We welcome contributions from the community. Please fork the repository, apply your improvements, and submit a pull request.

License

This project is licensed under the GPL-3.0 License.

Note: 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

~27–36MB
~606K SLoC