Agora Java API Reference for Android
Public Attributes | List of all members
io.agora.rtc2.IRtcEngineEventHandler.AudioVolumeInfo Class Reference

The volume information of users. More...

Public Attributes

int uid
 
int volume
 
int vad
 
double voicePitch
 

Detailed Description

The volume information of users.

Member Data Documentation

◆ uid

int io.agora.rtc2.IRtcEngineEventHandler.AudioVolumeInfo.uid

The user ID.

  • In the local user's callback, uid is 0.
  • In the remote users' callback, uid is the user ID of a remote user whose instantaneous volume is the highest.

◆ volume

int io.agora.rtc2.IRtcEngineEventHandler.AudioVolumeInfo.volume

The volume of the user. The value ranges between 0 (the lowest volume) and 255 (the highest volume). If the local user enables audio capturing and calls muteLocalAudioStream and set it as true to mute, the value of volume indicates the volume of locally captured audio signal. If the user calls startAudioMixing(String filePath, boolean loopback, int cycle, int startPos), the value of volume indicates the volume after audio mixing.

◆ vad

int io.agora.rtc2.IRtcEngineEventHandler.AudioVolumeInfo.vad

Voice activity status of the local user.

  • 0: The local user is not speaking.
  • 1: The local user is speaking.
    Note
  • The vad parameter does not report the voice activity status of remote users. In a remote user's callback, the value of vad is always 1.
  • To use this parameter, you must set reportVad to true when calling enableAudioVolumeIndication.

◆ voicePitch

double io.agora.rtc2.IRtcEngineEventHandler.AudioVolumeInfo.voicePitch

The voice pitch of the local user. The value ranges between 0.0 and 4000.0.

Note
The voicePitch parameter does not report the voice pitch of remote users. In the remote users' callback, the value of voicePitch is always 0.0.