Interface AudioFrame

A decoded audio frame received from the shard.

interface AudioFrame {
    netId: number;
    opus: Uint8Array;
    userId: string;
}

Properties

Properties

netId: number

Net ID the audio was transmitted on.

opus: Uint8Array

Raw Opus audio payload.

userId: string

Discord user ID of the transmitting operator.