1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 3, 2025 |
---|
#34 in #audio-plugin
Used in 10 crates
(4 directly)
540KB
5.5K
SLoC
Aloe Audio Plugin Instance Crate
The aloe-audio-plugin-instance
crate provides foundational components for handling active instances of audio plugins. It extends the AudioProcessor
paradigm, facilitating the integration and management of dynamically loaded plugins within a host environment. This package is dedicated to plugin hosting infrastructures and not intended for plugin development itself.
Features
- AudioPluginInstance: Flexible struct harnessing the powers of
AudioProcessor
for plugin hosting scenarios. - GetExtensions Trait: Fetches specific details about plugin implementations such as VST and AudioUnit formats, allowing a deep dive into the plugin's internals via the
ExtensionsVisitorInterface
. - Comprehensive Parameter Handling: Includes methods to manage and query plugin parameters, offering capabilities like name resolution, parameter ID retrieval, step counts, and attribute checks.
Usage
Here is an example of how you can instantiate and work with the AudioPluginInstance
in your Rust application:
use aloe_audio_plugin_instance::{AudioPluginInstance, AudioProcessorBusesProperties};
fn main() {
let io_layouts = AudioProcessorBusesProperties::new();
let plugin_instance = AudioPluginInstance::new_with_io_layouts(&io_layouts);
// Further processing...
}
API Elements
Structs:
AudioPluginInstance
: A struct derived fromAudioProcessor
with methods catering to plugin manipulation.AudioPluginInstanceParameter
: Holds parameter information for plugins, supporting value to text conversion and vice-versa.
Implementations:
- Trait
GetExtensions
: Methodget_extensions()
enabling extraction of plugin-specific data.
Contributing
We welcome contributions to enhance functionality, fix bugs, or improve documentation. Please check our repository for guidelines.
This README.md file was generated by an AI model and may not be 100% accurate, but should be a helpful guide.
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
~28–38MB
~600K SLoC