@videosdk.live/server-sdk
    Preparing search index...

    Interface RealtimeTranscription

    A realtime transcription job. id is the transcriptionId.

    interface RealtimeTranscription {
        end?: string | null;
        extension?: RealtimeTranscriptionExtension;
        id: string;
        roomId?: string;
        start?: string;
        status?: string;
        summarizedFilePaths?: { txt?: string } & Record<string, string | undefined>;
        transcriptionFilePaths?: { txt?: string } & Record<
            string,
            string
            | undefined,
        >;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    end?: string | null
    id: string
    roomId?: string

    The room the transcription runs in. Populated from the start call and (on get/list) from extension.extensionConfig.roomId; may be undefined when no extension is present.

    start?: string
    status?: string
    summarizedFilePaths?: { txt?: string } & Record<string, string | undefined>

    Summary file URLs keyed by format (e.g. { txt }).

    transcriptionFilePaths?: { txt?: string } & Record<string, string | undefined>

    Output file URLs keyed by format (e.g. { txt }).