Meet Features
#
Mute/Unmute audioDuring meet, you can mute the mic so that receiver don't hear your voice or surrounding noise. In order the use the mute feature you can utilise the meet sdk method below:
Argument | Type | Description |
---|---|---|
MUTE_AUDIO | boolean | Pass true ,if you want to disable audio else pass false |
- Java
- Kotlin
#
Mute/Unmute videoDuring meet, you can turn off the camera so that receiver don't see your video. In order the use the video mute feature you can utilise the meet sdk method below:
Argument | Type | Description |
---|---|---|
MUTE_VIDEO | boolean | Pass true ,if you want to disable audio else pass false |
Note: The below method accepts
CallActionListener
as a optional paramter. you can pass the listener to get the response when camera mute/unmute action completed.
- Java
- Kotlin
#
Check user's mute statusDuring meet, you can check the audio/video mute status of the end user in meet.
To check the audio
muted status, call the below method:
Argument | Type | Description |
---|---|---|
END_USER_JID | String | jid of the end call user |
- Java
- Kotlin
To check the video
muted status, call the below method:
Argument | Type | Description |
---|---|---|
END_USER_JID | String | jid of the end call user |
- Java
- Kotlin
#
Audio device typesWhenever a user is in meet and if they would like to change the output audio device then they can use the below meet sdk method to change the output device for the meet.
#
Get available audio devicesYou can get available audio devices by using the below sdk method to show it in your UI.
- Java
- Kotlin
#
Select audio deviceArgument | Type | Description |
---|---|---|
AUDIO_DEVICE | String | any one of values of AudioDevice |
The AUDIO_DEVICE
device can be any of the below,
- Java
- Kotlin
Note: whenever you are connected to bluetooth headset while using sdk call, if the gsm call arrives and if you attends it then gsm call will take priority for the bluetooth headset.so, even if you disconnect the gsm call, bluetooth headset will not connect back to the sdk call.
#
Switching between camera feedDuring meet, you can switch between camera's by using the below method.
- Java
- Kotlin
#
Check mute statusAt any time in meet, you can able to check the audio/video mute status of the end user in meet.
To check the audio
muted status, call the below method:
Argument | Type | Description |
---|---|---|
END_USER_JID | String | jid of the end user |
- Java
- Kotlin
To check the video
muted status, call the below method:
Argument | Type | Description |
---|---|---|
END_USER_JID | String | jid of the end user |
- Java
- Kotlin
#
Get Meet usersIn order to fetch the members of an ongoing meet, use the below method
- Java
- Kotlin
#
Get Meet user statusIn order to get the meet status of the given UserId, use below method
- Java
- Kotlin
Argument | Type | Description |
---|---|---|
END_USER_JID | String | jid of the end call user |
#
Fetching Meet Connected listTo fetch the connected users in the meet, use below method
- Java
- Kotlin
#
Get CallModeIn order to get the callMode of the ongoing meet, use below method
- Java
- Kotlin
callMode
value will be anyone of the values of annotation class CallMode
CallMode Value | Description |
---|---|
CallMode.ONE_TO_ONE | the call is between 2 user |
CallMode.ONE_TO_MANY | the call is between group of members |
CallMode.MEET | Multiple users can join via a link |