Member Junction
    Preparing search index...

    One raw per-attendee audio frame the native addon surfaces (inbound hearing + diarization).

    interface NativeAudioFrame {
        data: ArrayBuffer | Uint8Array<ArrayBufferLike>;
        displayName?: string;
        timestampMs?: number;
        userId: string | number;
    }
    Index

    Properties

    data: ArrayBuffer | Uint8Array<ArrayBufferLike>

    Raw PCM bytes for this frame (Uint8Array view or standalone ArrayBuffer).

    displayName?: string

    The participant's display name at capture time, when the addon provides it.

    timestampMs?: number

    Optional epoch-ms capture timestamp.

    userId: string | number

    The Slack user id that produced the audio (the diarization speaker label).