Member Junction
    Preparing search index...

    One subscribed per-participant audio frame the native room client surfaces (inbound hearing + diarization).

    interface NativeRoomAudioFrame {
        data: ArrayBuffer | Uint8Array<ArrayBufferLike>;
        name?: string;
        participantIdentity: string;
        timestampMs?: number;
    }
    Index

    Properties

    data: ArrayBuffer | Uint8Array<ArrayBufferLike>

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

    name?: string

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

    participantIdentity: string

    The LiveKit participant identity that produced the audio (the diarization speaker label).

    timestampMs?: number

    Optional epoch-ms capture timestamp.