@jambonz/sdk
    Preparing search index...

    Interface TranscribeVerb

    interface TranscribeVerb {
        verb: "transcribe";
        id?: string;
        enable?: boolean;
        transcriptionHook?: string;
        translationHook?: string;
        recognizer?: Recognizer;
        earlyMedia?: boolean;
        channel?: number;
    }
    Index

    Properties

    verb: "transcribe"
    id?: string
    enable?: boolean

    Enable or disable transcription (used in nested config/dial context).

    transcriptionHook?: string

    Webhook for transcription results.

    translationHook?: string

    Webhook for translated results.

    recognizer?: Recognizer

    STT configuration.

    earlyMedia?: boolean

    Transcribe before call is answered.

    channel?: number

    Specific audio channel to transcribe.