#midi #events #vst #plugin #audio-plugin #audio

aloe-vst-events

A Rust crate for managing VST events, facilitating communication and interoperability between DAWs and VST plugins through a robust set of interfaces and structures. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 3, 2025

#21 in #vst


Used in 7 crates (5 directly)

GPL-3.0 license

255KB
2.5K SLoC

Aloe VST Events

Aloe VST Events is a Rust crate providing a comprehensive suite of interfaces and structures for handling event processing within the VST (Virtual Studio Technology) framework. This crate facilitates communication between digital audio workstations (DAWs) and VST plugins, enabling them to efficiently manage MIDI events, audio processing commands, and plugin-specific protocol interactions.

Features

  • VST Event Flags & Types: Enumerations for identifying and categorizing VST events including note on/off, polyphonic pressure, and custom data events.
  • Event Management: Traits for handling VST events efficiently, including event scheduling, triggering, and management of deferred updates.
  • Bus Management: Structures and interfaces for managing audio and event busses, providing detailed bus descriptions and configurations.
  • Interoperability: Designed for seamless integration within audio processing pipelines, maintaining adherence to VST specifications and interoperability with host-DAW systems.

Usage Example

use aloe_vst_events::{VstEvent, VstEventTypes};

fn handle_event(event: VstEvent) {
    match event.ty {
        VstEventTypes::kNoteOnEvent => {
            println!("Note On Event Detected");
        }
        _ => {
            println!("Other Event");
        }
    }
}

Getting Started

Refer to the documentation and examples for a complete guide on integrating and leveraging this crate in your audio processing projects.

Contributing

Contributions are welcome. Please submit pull requests to the repository: aloe-rs.

License

This library is licensed under the GPL-3.0. See the LICENSE file for more information.


This README.md file was generated by an AI model and may not be 100% accurate, but 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

~12–26MB
~353K SLoC