TranscriptWord: {
    channel?: string | null;
    confidence: number;
    end: number;
    speaker: string | null;
    start: number;
    text: string;
}

Type declaration

  • Optionalchannel?: string | null

    The channel of the word. The left and right channels are channels 1 and 2. Additional channels increment the channel number sequentially.

  • confidence: number

    The confidence score for the transcript of this word

  • end: number

    The ending time, in milliseconds, for the word

  • speaker: string | null

    The speaker of the word if Speaker Diarization is enabled, else null

  • start: number

    The starting time, in milliseconds, for the word

  • text: string

    The text of the word

{
"text": "Smoke",
"start": 250,
"end": 650,
"confidence": 0.97465,
"channel": null,
"speaker": null
}