FreakingGenius - v0.1.0
    Preparing search index...

    Interface TranscriptWord

    A single word in a transcript with its start/end timing.

    interface TranscriptWord {
        confidence: number;
        endSec: number;
        startSec: number;
        word: string;
    }
    Index

    Properties

    confidence: number

    Confidence score in [0, 1].

    endSec: number

    End time in seconds within the submitted audio segment.

    startSec: number

    Start time in seconds within the submitted audio segment.

    word: string

    The recognised word text.