Audio Loom - v0.2.2
    Preparing search index...

    Interface PlaybackInfo

    Detailed playback information for a channel. Returned by AudioManager.getPlaybackInfo.

    interface PlaybackInfo {
        key: string;
        isPlaying: boolean;
        isPaused: boolean;
        currentTime: number;
        duration: number | null;
        playbackRate: number;
        volume: number;
    }
    Index

    Properties

    key: string

    Audio key currently playing.

    isPlaying: boolean

    Whether the channel is currently playing.

    isPaused: boolean

    Whether the channel is paused.

    currentTime: number

    Current playback position in seconds.

    duration: number | null

    Total track duration in seconds, or null if unknown.

    playbackRate: number

    Current playback rate (1.0 = normal).

    volume: number

    Current volume level (0.0 to 1.0).