adjustAudioMixingPlayoutVolume abstract method

Future<void> adjustAudioMixingPlayoutVolume(
  1. int volume
)

Adjusts the volume of audio mixing for local playback.

Call this method after calling startAudioMixing and receiving the onAudioMixingStateChanged (audioMixingStatePlaying) callback.

  • volume The volume of audio mixing for local playback. The value ranges between 0 and 100 (default). 100 represents the original volume.

Returns When the method call succeeds, there is no return value; when fails, the AgoraRtcException exception is thrown. You need to catch the exception and handle it accordingly.

Implementation

Future<void> adjustAudioMixingPlayoutVolume(int volume);