Member Junction
    Preparing search index...

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

    interface NativeAudioFrame {
        data: ArrayBuffer | Uint8Array<ArrayBufferLike>;
        displayName?: string;
        participantId: string | number;
        timestampMs?: 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.

    participantId: string | number

    The Teams participant id that produced the audio (the diarization speaker label).

    timestampMs?: number

    Optional epoch-ms capture timestamp.