#real-time-audio #convert #audio #callback #multimedia

aloe-oboe-sourcefloatcaller

Advanced audio source management using callbacks for efficient audio data handling and conversion across multiple formats. 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

#22 in #real-time-audio


Used in 2 crates

GPL-3.0 license

280KB
1.5K SLoC

Aloe Oboe SourceFloatCaller

Aloe Oboe SourceFloatCaller is an advanced Rust library for audio source management using callback mechanisms for dynamic data handling. Designed to optimize audio data flow and processing, this crate is ideal for high-fidelity audio applications requiring precise control over audio data pipelines.

Features

  • Dynamic AudioSource Handling: Utilize callback methods to seamlessly read and manage audio data from input and output streams with minimal latency.
  • Type-Specific Processing: Support for multiple audio data types including 16-bit, 24-bit, 32-bit integers, and floating point conversions, allowing developers to choose the right format for their application.
  • Efficient Data Conversion: Includes optimized routines for converting audio data formats ensuring high-quality audio transformations.
  • Stabilized Callbacks: Implements stabilized callbacks that ensure consistent processing times through dynamic workload adjustment, crucial for real-time audio applications.

Usage

use aloe_oboe_sourcefloatcaller::OboeSourceI16Caller;

fn main() {
    // Example of setting up a new audio source caller.
    let mut audio_source = OboeSourceI16Caller::new(2, 512);
    // Set the stream and process audio frames
    // audio_source.set_stream(...);
    let frames_processed = audio_source.on_process(1024);
    println!("Processed {} frames", frames_processed);
}

Getting Started

To get started, add the following to your Cargo.toml:

[dependencies]
aloe-oboe-sourcefloatcaller = "0.1.0"

License

This project is licensed under the GPL-3.0 License.

Contact

For questions and issues, contact the author: klebs at tpk3.mx@gmail.com


This README file was generated by an AI model and may not be 100% accurate, but 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. designed specifically for rust projects.

Dependencies

~39MB
~625K SLoC