1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 2, 2025 |
---|
#10 in #buffering
43 downloads per month
Used in 52 crates
(10 directly)
1MB
10K
SLoC
Aloe Audio Source
Aloe Audio Source is a Rust crate offering a suite of advanced audio sources for handling and manipulating audio data. It provides configurable structures for streaming and processing audio with features like resampling, buffering, and channel remapping, suitable for high-performance applications with real-time audio processing requirements.
Features
- Positionable Audio Sources: Manage audio streams with finite length and trackable read positions.
- Buffering Audio Sources: Asynchronous audio buffering, leveraging background threads for optimized playback.
- Channel Remapping: Flexible input-output channel mappings to suit diverse audio configurations.
- Resampling: Alter the sample rate of audio streams efficiently, supporting both upsampling and downsampling.
- Memory Audio Sources: Embed audio data directly, offering optional memory ownership and loop control.
- Tone Generator: Simple sine wave generation for testing and audio synthesis purposes.
Technical Background
Aloe Audio Source employs a variety of Rust-specific techniques, including unsafe code blocks where performance and low-level control are pivotal. Concepts such as atomic operations, scoped pointers, and spinlocks ensure thread safety and efficiency during audio processing.
Usage Example
use aloe_audio_source::BufferingAudioSource;
use aloe_audio_source::ToneGeneratorAudioSource;
demo_audio_processing_function();
// Setup a tone generator audio source
let mut tone_generator = ToneGeneratorAudioSource::default();
tone_generator.set_frequency(440.0);
tone_generator.set_amplitude(0.5);
// Example of using BufferingAudioSource
let mut thread = your_thread_initialization();
let mut buffering_audio_source = BufferingAudioSource::new(&tone_generator, &mut thread, true, 2048, Some(2), Some(true));
// Call processing functions
demo_audio_processing_function();
fn demo_audio_processing_function() {}
Installation
Add the following dependency to your Cargo.toml
:
[dependencies]
aloe-audio-source = "0.1.0"
Repository & Licensing
This crate is open-source under the GPL-3.0 license and can be found on GitHub.
Note: This README.md file was generated by an AI model. It aims to be helpful and accurate, though some details might not fully align with specific implementations. Caveat lector.
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
~27–41MB
~612K SLoC