1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 3, 2025 |
---|
#34 in #audio-plugin
Used in 3 crates
(via aloe-audio)
3MB
24K
SLoC
Aloe Audio Plugin Client
Aloe Audio Plugin Client is a sophisticated library designed for managing and interfacing with audio plugins across various platforms including Linux, macOS, BSD, and Windows. It provides facilities for handling messages in plugins, addressing window visibility issues on macOS, and managing plugin instances with a high level of concurrency.
Features
- Cross-platform Compatibility: Supports various operating systems, ensuring seamless integration and operation of audio plugins.
- Message Handling: Implements a dedicated message thread for efficient message dispatch and processing.
- Window Management on macOS: Provides hooks to manage window visibility and event handling, addressing inherent quirks in macOS window systems.
- Plugin Instance Management: Facilitates creation, initialization, and management of plugin filter instances to streamline the audio processing pipeline.
- VST3 Support: Handles specific VST2 opcodes and facilitates UUID generation, compatible with both Steinberg VST2 and VST3 standards.
Installation
Add the following to your Cargo.toml
:
[dependencies]
aloe-audio-plugin-client = "0.1.0"
Usage
use aloe_audio_plugin_client::{MessageThread, create_plugin_filter};
let mut message_thread = MessageThread::default();
message_thread.start();
// Set up your audio processing...
let plugin_filter = create_plugin_filter();
// Handle plugin and event management...
License
Licensed under GPL-3.0.
Contribution
Contributions are welcome. Please follow the guidelines in the contribution guide.
Contact
For more information, please contact klebs at tpk3.mx@gmail.com.
This README file was generated by an AI model and may not be 100% accurate, though 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.
Dependencies
~30–40MB
~629K SLoC