#audio-plugin #plugin #audio #daw #multimedia #hostdetection

aloe-audio-plugin-host

Aloe Audio Plugin Host is a Rust library for identifying and interacting with Digital Audio Workstations (DAWs), providing capabilities to detect host software and customize plugin behavior according to host environments. 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

#16 in #daw


Used in 4 crates (via aloe-audio-plugin-client)

GPL-3.0 license

555KB
5K SLoC

Aloe Audio Plugin Host

Aloe Audio Plugin Host is a Rust library designed to identify and interact with various Digital Audio Workstation (DAW) software environments. It provides an enumeration of host applications and utility functions to determine the host context in which audio plugins operate.

Overview

This crate facilitates audio plugin developers in identifying the types of DAWs and software hosts their plugins are being loaded in. This capability is crucial for customizing plugin behavior according to the nuances of each host. Whether you're developing plugins for Ableton Live, Apple Logic, Steinberg Cubase, or other popular DAWs, this library gives you robust tools for host detection.

Key Features

  • Host Identification: Enum PluginHostKind covers a wide range of DAWs and audio editing software, offering detailed host type recognition.
  • Inter-App Audio Support: Check Inter-App Audio (IAA) connections on iOS devices to ensure seamless audio routing and integration.
  • Host-Switching Utility: Switch back to host applications from within standalone plugin environments on iOS.
  • Wrapper Type Detection: Detects the plugin format that loaded the plugin, aiding in format-specific behavior implementation.
  • Human-Readable Host Descriptions: Easily fetch readable descriptions to improve user-facing logging and debugging.

Example Usage

use aloe_audio_plugin_host::{PluginHostType, PluginHostKind};

let host_type = PluginHostType::default();
if host_type.is_ableton_live() {
    println!("Plugin is hosted in Ableton Live.");
} else if host_type.is_cubase() {
    println!("Plugin is hosted in Steinberg Cubase.");
}

Installation

Add the following to your Cargo.toml:

[dependencies]
aloe-audio-plugin-host = "0.1.0"

License

GPL-3.0

Contributing

Contributions are welcome! Please see the CONTRIBUTING.md for guidelines.

Author


This README was generated by an AI model and may not be 100% accurate, but it should be quite comprehensive.

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

~29–43MB
~627K SLoC