SongGuess
    Preparing search index...

    Interface Ai_Cf_Openai_Whisper_Output

    interface Ai_Cf_Openai_Whisper_Output {
        text: string;
        vtt?: string;
        word_count?: number;
        words?: { end?: number; start?: number; word?: string }[];
    }
    Index

    Properties

    text: string

    The transcription

    vtt?: string
    word_count?: number
    words?: { end?: number; start?: number; word?: string }[]

    Type Declaration

    • Optionalend?: number

      The ending second when the word completes

    • Optionalstart?: number

      The second this word begins in the recording

    • Optionalword?: string