@byomakase/omakase-player
    Preparing search index...

    Interface AudioState

    Serializable snapshot of an audio Track.

    interface AudioState {
        audioCodec: string | undefined;
        audioType: AudioType;
        channels: number | undefined;
        duration: number | undefined;
        id: string;
        label: string | undefined;
        loadStage: OpStageState;
        mediaType: MediaEntityType;
        relations: RelationState[];
        source: SourceState | undefined;
        sourceFileFormatType?: FileFormatType;
        trackType: TrackType;
        url: string | undefined;
    }

    Hierarchy (View Summary)

    Index

    Properties

    audioCodec: string | undefined
    audioType: AudioType
    channels: number | undefined
    duration: number | undefined
    id: string
    label: string | undefined
    loadStage: OpStageState
    mediaType: MediaEntityType
    relations: RelationState[]
    source: SourceState | undefined
    sourceFileFormatType?: FileFormatType
    trackType: TrackType
    url: string | undefined