#speaker #channel #vst #audio #arrangement

aloe-vst-speaker

A Rust library for managing and converting VST speaker arrangements, facilitating digital audio applications. Provides functions for querying and manipulating audio channel sets to ensure accurate speaker configurations. 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

#10 in #speaker


Used in 2 crates

GPL-3.0 license

665KB
6.5K SLoC

Aloe VST Speaker

The aloe-vst-speaker Rust crate provides robust management and manipulation of VST (Virtual Studio Technology) speaker arrangements. Particularly designed for audio applications and digital music production, this crate offers comprehensive functionalities to interpret and convert various speaker configurations leveraging VST standards.

Features

  • Speaker Arrangement Mapping: Structures for mapping speaker configurations to VST standards.
  • Channel Set Conversion: Efficient conversion between VST speaker arrangements and audio channel sets.
  • Speaker Arrangement Queries: Utility functions to ascertain the presence of various speaker types such as top and bottom speakers, or configurations like Auro and Ambisonics.

Getting Started

To start using aloe-vst-speaker, add it to your Cargo.toml:

[dependencies]
aloe-vst-speaker = "0.1.0"

Example

use aloe_vst_speaker::{VstSpeakerConfigurationHolder, SpeakerArrangement};

fn main() {
    let arrangement = SpeakerArrangement::from_string("kStereo");
    let channel_count = speaker_arr_get_channel_count(arrangement);
    println!("Stereo arrangement has {} channels.", channel_count);
}

Safety and Efficiency

The crate adheres to safe programming paradigms in Rust while maintaining high efficiency, crucial for real-time audio applications.

License

This project is licensed under the GPL-3.0 License. For more details, see the LICENSE file.

Contribution

Contributions are welcome. Please open issues and pull requests.


This README.md 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.

Dependencies

~14–24MB
~380K SLoC