#audio-player #frame-rate #control #playback #audio #playhead

aloe-playhead

Aloe Playhead is a Rust crate providing an interface for audio playback control and status tracking, featuring frame rate management and playhead position struct. 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 2, 2025

#7 in #frame-rate

44 downloads per month
Used in 111 crates (7 directly)

GPL-3.0 license

40KB
253 lines

Aloe Playhead Crate

Aloe Playhead is a Rust crate designed to provide an interface for tracking and controlling the position and status of a moving playhead within audio playback applications. This crate is particularly useful for developers working on audio processing tasks, allowing them to gain precise control and feedback over the audio rendering process.

Features

  • Frame Rate Management: Define and handle various frame rates such as 23.976 fps, 24 fps, 25 fps, and more through the FrameRateType enum.
  • Audio Playhead Interface: Implement the AudioPlayHeadInterface trait to manage playhead positions, transport controls, and playback states.
  • Position Information Struct: AudioPlayHeadCurrentPositionInfo struct stores detailed information about playback such as BPM, time signature, playback position, frame rate, and loop settings.

Usage

To utilize the Aloe Playhead crate, integrate it within your audio processing module by implementing the AudioPlayHeadInterface. Use the provided functions to retrieve or reset the position data as necessary.

Sample Code:

use aloe_playhead::{AudioPlayHeadInterface, AudioPlayHeadCurrentPositionInfo, FrameRateType};

struct MyAudioPlayHead {
    // Custom playhead data implementation
}

impl AudioPlayHeadInterface for MyAudioPlayHead {
    fn get_current_position(&mut self, result: &mut AudioPlayHeadCurrentPositionInfo) -> bool {
        // Logic to update result with current position
        true
    }

    fn can_control_transport(&mut self) -> bool {
        // Logic to determine if transport can be controlled
        true
    }

    fn transport_play(&mut self, should_start_playing: bool) {
        // Logic to handle playback control
    }

    fn transport_record(&mut self, should_start_recording: bool) {
        // Logic to toggle recording state
    }

    fn transport_rewind(&mut self) {
        // Logic to rewind the transport
    }
}

Technical Details

  • Requires Rust edition 2024.
  • Licensed under GPL-3.0.
  • Contributions and issues can be handled through the GitHub repository.

Limitations

  • This implementation does not contain a complete equality check logic for AudioPlayHeadCurrentPositionInfo. Users are encouraged to implement the TODO sections per their application's specificity.

Note

This README.md file 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. designed specifically for rust projects.

Dependencies

~13–27MB
~376K SLoC