Interface IAudioSpectrumObserver

The audio spectrum observer.

Hierarchy

  • IAudioSpectrumObserver

Methods

  • Gets the statistics of a local audio spectrum. After successfully calling registerAudioSpectrumObserver to implement the onLocalAudioSpectrum callback in IAudioSpectrumObserver and calling enableAudioSpectrumMonitor to enable audio spectrum monitoring, the SDK will trigger the callback as the time interval you set to report the received remote audio data spectrum.

    Returns

    Whether the spectrum data is received:true: Spectrum data is received.false: No spectrum data is received.

    Parameters

    • data: AudioSpectrumData

      The audio spectrum data of the local user. See AudioSpectrumData .

    Returns boolean

  • Gets the remote audio spectrum. After successfully calling registerAudioSpectrumObserver to implement the onRemoteAudioSpectrum callback in the IAudioSpectrumObserver and calling enableAudioSpectrumMonitor to enable audio spectrum monitoring, the SDK will trigger the callback as the time interval you set to report the received remote audio data spectrum.

    Returns

    Whether the spectrum data is received:true: Spectrum data is received.false: No spectrum data is received.

    Parameters

    • spectrums: UserAudioSpectrumInfo[]

      The audio spectrum information of the remote user, see UserAudioSpectrumInfo . The number of arrays is the number of remote users monitored by the SDK. If the array is null, it means that no audio spectrum of remote users is detected.

    • spectrumNumber: number

      The number of remote users.

    Returns boolean

Generated using TypeDoc