Package io.agora.rtc2.audio
Interface IAudioSpectrumObserver
public interface IAudioSpectrumObserver
The IAudioSpectrumObserver interface.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReports the audio spectrum of audio recording.booleanonRemoteAudioSpectrum(UserAudioSpectrumInfo[] userAudioSpectrumInfos, int spectrumNumber) Reports the audio spectrum of remote user.
-
Method Details
-
onLocalAudioSpectrum
Reports the audio spectrum of audio recording. This callback reports the audio spectrum data of the audio recording at the moment in the channel. You can set the time interval of this callback usingRtcEngine#enableAudioSpectrumMonitor(int).- Parameters:
data- The audio spectrum data of audio recording. - true: Processed. - false: Not processed.
-
onRemoteAudioSpectrum
Reports the audio spectrum of remote user. This callback reports the IDs and audio spectrum data of the loudest speakers at the moment in the channel. You can set the time interval of this callback usingRtcEngine#enableAudioSpectrumMonitor(int)..- Parameters:
userAudioSpectrumInfos- The pointer to \ref agora::media::AudioSpectrumInfo "AudioSpectrumInfo", which is an array containing the user ID and audio spectrum data for each speaker. - This array contains the following members: - `uid`, which is the UID of each remote speaker - `audioSpectrumData`, which reports the audio spectrum of each remote speaker. - `spectrumDataLength`, the length of audio spectrum data.spectrumNumber- The array length of the audioSpectrumInfoList. - true: Processed. - false: Not processed.
-