#audio-player #sample-rate #buffering #audio #playback #gaincontrol

aloe-audio-transport-source

aloe-audio-transport-source offers an efficient platform for managing audio stream playback, including facilities for buffering, sample rate correction, and gain manipulation, designed for advanced digital audio processing 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.1 Apr 3, 2025

#8 in #buffering


Used in 32 crates (4 directly)

GPL-3.0 license

1MB
8K SLoC

Aloe Audio Transport Source

Aloe Audio Transport Source provides an adaptive audio playback interface capable of controlling complex audio sequences. It enables users to manipulate audio streams with precision, featuring start/stop controls, gain adjustments, and sample rate handling. This implementation is ideal for scenarios requiring high-fidelity audio manipulation, including game engines, simulations, and digital audio workstations.

Features

  • Positionable Audio Source Integration: Seamlessly interfaces with PositionableAudioSource for intuitive audio positioning.
  • Advanced Buffer Management: Employs buffering strategies and background threading to ensure smooth audio playback, even in varied system conditions.
  • Sample Rate Correction: Facilitates audio playback across different sample rates, maintaining pitch fidelity.
  • Thread-Safe Operations: Utilizes locks and atomics for safe concurrent audio operations.
  • Gain Control: Flexible dynamism in modulating audio amplitudes.

Overview

With the AudioTransportSource, manage audio playback by setting input sources, adjusting playback positions, and leveraging audio streams efficiently. Designed to work harmoniously with AudioSourcePlayer and AudioIODevice, it is a critical component for any sophisticated audio framework.

Example Code

To initialize and use the AudioTransportSource:

use aloe_audio_transport_source::{AudioTransportSource, AudioSource, PositionableAudioSource};

// Initialization and configuration of the transport source
todo!(); // Placeholder for actual source setup

let mut transport_source = AudioTransportSource::default();
transport_source.set_source(...); // Configure the source as per requirements

This README has been generated by an AI model. Please verify contents as they may not be 100% accurate, though they should provide a solid foundation for understanding and using the crate.

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–37MB
~609K SLoC