Video SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKAudioHelper.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import java.util.List;
4
9public interface ZoomVideoSDKAudioHelper {
10
27
28
57
63
68 int stopAudio();
69
76
83
90 @Deprecated
91 int setSpeaker(boolean speaker);
92
98
104
105
111
117
123 int muteAllAudio(boolean allowUnmute);
124
132
138 int allowAudioUnmutedBySelf(boolean allowUnmute);
139
144 List<ZoomVideoSDKAudioDevice> getAudioDeviceList();
145
151
158
171 int disableTelephoneMonitor(boolean disable);
172
178}
Enumeration of the types of audio sources supported by the Zoom Video SDK.
Represents an audio device in the Zoom Video SDK.
String getAudioName()
Gets the audio device name.
ZoomVideoSDKAudioSourceType getAudioSourceType()
Gets the audio device type.
Audio control interface. See ZoomVideoSDK#getAudioHelper().
int switchToAudioSourceType(ZoomVideoSDKAudioDevice audioDevice)
Switches to the specified audio device.
boolean getSpeakerStatus()
Gets the audio speaker status.
int disableTelephoneMonitor(boolean disable)
Disables telephone state monitoring. By default, the Zoom Video SDK monitors the device's telephone c...
int unSubscribe()
Unsubscribes from audio raw data.
List< ZoomVideoSDKAudioDevice > getAudioDeviceList()
Gets the list of available audio devices that support switching.
int allowAudioUnmutedBySelf(boolean allowUnmute)
Allows users to unmute themselves or not. For host or manager only.
int muteAudio(ZoomVideoSDKUser user)
Mutes the user's VoIP audio.
boolean isTelephoneMonitorDisabled()
Determines whether telephone state monitoring is disabled.
int unMuteAudio(ZoomVideoSDKUser user)
Unmutes the user's VoIP audio.
int muteAllAudio(boolean allowUnmute)
Mutes all users' audio except the current user.
int unmuteAllAudio()
Asks all users to unmute their audio. Only the host or manager can ask all users to unmute their audi...
ZoomVideoSDKAudioDevice getUsingAudioDevice()
Gets the current active audio device.
int startAudio()
Starts audio with VoIP.
boolean canSwitchSpeaker()
Determines whether the audio speaker can be switched.
int subscribe()
Subscribes to audio raw data.
int setSpeaker(boolean speaker)
Sets the audio speaker.
Zoom Video SDK user information.