Member Junction
    Preparing search index...

    One raw per-participant audio frame the ACS inbound socket surfaces (PCM at the socket's sample rate).

    interface AcsInboundAudioFrame {
        DisplayName?: string;
        ParticipantId: string;
        Pcm: ArrayBuffer;
        TimestampMs?: number;
    }
    Index

    Properties

    DisplayName?: string

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

    ParticipantId: string

    The ACS source participant id this audio came from (the diarization speaker label).

    Pcm: ArrayBuffer

    Raw little-endian PCM16 bytes for this frame.

    TimestampMs?: number

    Optional epoch-ms capture timestamp.