Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
InMeetingAudioController.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
6public interface InMeetingAudioController {
27
33 public boolean isMyAudioMuted();
34
40 public boolean canUnmuteMyAudio();
41
48 public MobileRTCSDKError muteMyAudio(boolean mute);
49
55 public boolean isAudioConnected();
56
63
70
76 public boolean canSwitchAudioOutput();
77
85
91 public boolean getLoudSpeakerStatus();
92
100 public MobileRTCSDKError muteAttendeeAudio(boolean isMute, long userId);
101
108 public MobileRTCSDKError muteAllAttendeeAudio(boolean allowUnmuteSelf);
109
116
117
125
131 public boolean isMuteOnEntryOn();
132
140
147
154
161
168
169
177 MobileRTCSDKError enableMuteOnEntry(boolean bEnable, boolean allowUnmuteBySelf);
178
185
193
200
207
208}
Enumeration of raw data errors.
Enumeration of common SDK errors.
MobileRTCSDKError stopIncomingAudio(boolean bStop)
Stops the incoming audio.
MobileRTCSDKError enableMuteOnEntry(boolean bEnable, boolean allowUnmuteBySelf)
Mutes or unmutes the user after joining the meeting.
boolean isIncomingAudioStopped()
Determines whether the incoming audio is stopped.
MobileRTCAudioStatisticInfo getMeetingAudioStatisticInfo()
Gets meeting audio statistics information.
MobileRTCSDKError connectAudioWithVoIP()
Connects audio with VoIP while joining a meeting.
boolean canEnableMuteOnEntry()
Determines whether the host or cohost can enable mute on entry. Valid for both Zoom style and user cu...
MobileRTCSDKError disconnectAudio()
Disconnects the audio.
int getSupportedMeetingAudioType()
Gets supported audio types.
MobileRTCSDKError muteAttendeeAudio(boolean isMute, long userId)
Mutes or unmutes the attendee's audio by the host.
MobileRTCRawDataError enablePlayMeetingAudio(boolean bEnable)
Enables or disables SDK to play meeting audio.
boolean isPlayMeetingAudioEnabled()
Determines whether play meeting audio is enabled.
MobileRTCSDKError setLoudSpeakerStatus(boolean on)
Sets whether to turn on the loudspeaker if it is able to switch audio output source of the current me...
boolean isMyAudioMuted()
Determines whether the current user's audio is muted.
boolean isMuteOnEntryEnabled()
Determines whether mute on entry is enabled.
boolean getLoudSpeakerStatus()
Gets the loudspeaker status of the current phone.
boolean is3rdPartyTelephonyAudioOn()
Determines whether the meeting has third-party telephony audio enabled.
boolean isMuteOnEntryOn()
Determines whether it is enabled to mute attendees automatically when they join the meeting.
MobileRTCSDKError setMuteOnEntry(boolean on)
Sets whether attendees join the meeting with audio muted.
boolean canUnmuteMyAudio()
Determines whether the user can unmute their audio.
boolean isAudioConnected()
Determines whether the current user's audio is connected.
boolean canSwitchAudioOutput()
Determines whether it is able to switch audio output source of the current meeting.
MobileRTCSDKError unmuteAllAttendeeAudio()
Unmutes all attendees by the host.
MobileRTCSDKError muteMyAudio(boolean mute)
Mutes or unmutes the user's audio.
MobileRTCSDKError muteAllAttendeeAudio(boolean allowUnmuteSelf)
Mutes all attendees by the host.