Member Junction
    Preparing search index...

    A single transcript cue (a span of spoken text tied to a time range). EndMs is optional — when absent, the active-cue window runs until the next cue's StartMs.

    interface MediaTranscriptCue {
        EndMs?: number;
        Id: string;
        SpeakerLabel?: string;
        StartMs: number;
        Text: string;
    }
    Index

    Properties

    EndMs?: number

    Optional cue end time, in milliseconds. When omitted, the next cue's start is used.

    Id: string

    Stable identifier for the cue.

    SpeakerLabel?: string

    Optional speaker label — color-coded in the transcript panel.

    StartMs: number

    Cue start time, in milliseconds from the start of the media.

    Text: string

    The spoken text for this cue.