1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 2, 2025 |
---|
#10 in #core-audio
26 downloads per month
Used in 6 crates
(3 directly)
60KB
344 lines
aloe-au-time
aloe-au-time
is a Rust crate designed to facilitate the generation of audio timestamps, managing the continuity and precision necessary for high-fidelity audio processing environments such as CoreAudio on macOS. It abstracts complexities involved in maintaining a continuous timeline through potential disruptions or discontinuities, such as those resulting from audio engine resets or overloads.
Features
- Timestamp Generation: Utilizes a robust algorithm to produce a sequence of continuously increasing timestamps despite upstream discontinuities.
- Discontinuity Management: Correctly handles interruptions or changes in audio streams, ensuring seamless operation.
- Platform Specific Time Operations: Exploits the macOS CoreAudio capabilities for precise time management, with fallback implementations available for other platforms.
- Host Time Base Utilities: Includes functions for converting host times to and from nanoseconds, and managing time frequency operations.
Usage
Include aloe-au-time
in your Cargo.toml
:
[dependencies]
aloe-au-time = "0.1.0"
Utilize the AUTimestampGenerator
to manage your audio timelines:
use crate::AUTimestampGenerator;
let mut timestamp_gen = AUTimestampGenerator::new(Some(true));
timestamp_gen.reset();
// Configure as needed
timestamp_gen.set_start_input_at_zero(true);
// Process timestamps -- iteratively
timestamp_gen.add_output_time(&audio_timestamp, expected_frames, output_rate, Some(1.0));
let input_time = timestamp_gen.generate_input_time(frames_to_advance, input_rate, Some(false));
Note
This README.md was generated by an AI model and may not be 100% accurate; however, it should provide a comprehensive overview of the crate's functionality.
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
~13–24MB
~401K SLoC