Interface LocalAudioTrackStats

Information of the local audio track, which can be retrieved by calling AgoraRTCClient.getLocalAudioStats.

Hierarchy

  • LocalAudioTrackStats

Index

Properties

Optional codecType

codecType: "opus" | "aac" | "PCMU" | "PCMA" | "G722"

The audio codec.

  • "opus": The audio codec is OPUS。
  • "aac": The audio codec is AAC。
  • "pcmu": Reserved for future use.
  • "pcma": Reserved for future use.
  • "g722": Reserved for future use.

Firefox does not support this property.

currentPacketLossRate

currentPacketLossRate: number

The packet loss rate of the sent audio in 400ms.

sendBitrate

sendBitrate: number

The bitrate (bps) of the sent audio.

sendBytes

sendBytes: number

The total bytes of the sent audio.

sendJitterMs

sendJitterMs: number

Jitter (ms) of the audio packets that were sent.

sendPackets

sendPackets: number

The total packets of the sent audio.

sendPacketsLost

sendPacketsLost: number

The total number of lost audio packets that were sent.

You can not get this property on Safari.

sendRttMs

sendRttMs: number

Round-trip time delay (ms) of the audio packets that were sent.

sendVolumeLevel

sendVolumeLevel: number

The energy level of the sent audio.

The value range is [0,32767].

This value is retrieved by calling WebRTC-Stats and may not be up-to-date. To get the real-time sound volume, call LocalAudioTrack.getVolumeLevel.