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

    Interface ContinuousPlaybackWebAudio

    Represents active continuous playback using Web Audio API. Used internally to track music/ambient playback channels.

    interface ContinuousPlaybackWebAudio {
        key: string;
        track: AudioTrack;
        mediaElement: HTMLAudioElement;
        sourceNode: MediaElementAudioSourceNode;
        gainNode: GainNode;
        isPlaying: boolean;
        isPaused: boolean;
    }
    Index

    Properties

    key: string

    Audio key being played.

    track: AudioTrack

    The track being played.

    mediaElement: HTMLAudioElement

    HTML audio element for streaming playback.

    sourceNode: MediaElementAudioSourceNode

    Web Audio source node connected to the media element.

    gainNode: GainNode

    Individual gain node for this channel.

    isPlaying: boolean

    Whether the track is currently playing.

    isPaused: boolean

    Whether the track is paused.