Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
InMeetingAudioController.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
7public interface InMeetingAudioController {
28
34 public boolean isMyAudioMuted();
35
40 public boolean canUnmuteMyAudio();
41
47 public MobileRTCSDKError muteMyAudio(boolean mute);
48
53 public boolean isAudioConnected();
54
60
66
71 public boolean canSwitchAudioOutput();
72
79
84 public boolean getLoudSpeakerStatus();
85
93 public MobileRTCSDKError muteAttendeeAudio(boolean isMute, long userId);
94
101 public MobileRTCSDKError muteAllAttendeeAudio(boolean allowUnmuteSelf);
102
108
109
116
121 public boolean isMuteOnEntryOn();
122
129
135
142
149
157
158
166 MobileRTCSDKError enableMuteOnEntry(boolean bEnable, boolean allowUnmuteBySelf);
167
174
182
189
190}
Enumeration of common errors of SDK.
MobileRTCSDKError stopIncomingAudio(boolean bStop)
Stop the incoming audio.
MobileRTCSDKError enableMuteOnEntry(boolean bEnable, boolean allowUnmuteBySelf)
mute or umute the user after joining the meeting.
boolean isIncomingAudioStopped()
Determine if the incoming audio is stopped.
MobileRTCSDKError connectAudioWithVoIP()
Connect audio with VoIP while joining a meeting.
boolean canEnableMuteOnEntry()
Check if the host or cohost can enable mute on entry. Valid for both ZOOM style and user custom inter...
MobileRTCSDKError disconnectAudio()
Disconnect the audio.
int getSupportedMeetingAudioType()
Get supported audio types.
MobileRTCSDKError muteAttendeeAudio(boolean isMute, long userId)
Mute/unmute the attendee's audio by the host.
MobileRTCRawDataError enablePlayMeetingAudio(boolean bEnable)
Enable or disable SDK to play meeting audio.
boolean isPlayMeetingAudioEnabled()
Determine if play meeting audio is enabled or not.
MobileRTCSDKError setLoudSpeakerStatus(boolean on)
Set whether to turn on loud-speaker if it is able to switch audio output source of the current meetin...
boolean isMyAudioMuted()
Query if the audio of current user is muted.
boolean isMuteOnEntryEnabled()
Determine if mute on entry is enabled.
boolean getLoudSpeakerStatus()
Get the speaker status of the current phone.
boolean is3rdPartyTelephonyAudioOn()
Determine if the meeting has third party telephony audio enabled.
boolean isMuteOnEntryOn()
Query if is enabled to mute attendees automatically when they join the meeting.
MobileRTCSDKError setMuteOnEntry(boolean on)
Set if attendees join the meeting with audio muted.
boolean canUnmuteMyAudio()
Query if the user can unmute the audio himself.
boolean isAudioConnected()
Query if the audio of the current user is connected.
boolean canSwitchAudioOutput()
Query if it is able to switch audio output source of the current meeting.
MobileRTCSDKError unmuteAllAttendeeAudio()
Unmute all by the host.
MobileRTCSDKError muteMyAudio(boolean mute)
Query if the user can mute the audio himself.
MobileRTCSDKError muteAllAttendeeAudio(boolean allowUnmuteSelf)
Mute all attendees by the host.