Quick Reference for AI Agents & DevelopersUse Cases: Webinars, online classes, keynote speeches, all-hands meetings
Capacity: Up to 5 presenters + 95 viewers (100 total)
Capacity: Up to 5 presenters + 95 viewers (100 total)
Overview
The Presenter Mode feature allows developers to create a calling service experience in which:- There are one or more users who are presenting their video, audio, and/or screen (maximum 5)
- Viewers are consumers of that presentation (they cannot send their audio, video, or screen streams out)
- The total number of presenters and viewers can go up to 100
- Features such as mute/unmute audio, show/hide camera capture, recording, etc. are enabled only for the Presenter in this mode
- Other call participants do not get these features, so they act like passive viewers in the call
- All hands calls
- Keynote speeches
- Webinars
- Talk shows
- Online classes and many more
About This Guide
This guide demonstrates how to start a presentation in an Android application. Before you begin, we strongly recommend you read the calling setup guide. Before starting a call session, you need to generate a call token. You need to call this method for the call token.Start Presentation Session
The most important class used in the implementation is thePresentationSettings class. This class allows you to set the various parameters for Presenter Mode. To set the various parameters of the PresentationSettings class, use the PresentationSettingsBuilder class. Below are the various options available with the PresentationSettings class.
The PresentationSettingsBuilder class takes 1 mandatory parameter as part of the constructor:
- Context of the application
Presenter and Participant. You can set this in PresentationSettingsBuilder by using the method isPresenter(true/false).
Here is a basic example of how to start a Presentation:
- Java
- Kotlin
| Parameter | Description |
|---|---|
activityContext | The activity in which you want to show the calling view. |
videoContainer | An object of the RelativeLayout class in which CometChatCalls can load the calling views. |
CometChatCallsEventsListener listener provides you with the below callback methods:
| Callback Method | Description |
|---|---|
onCallEnded() | This method is called when the call is successfully ended. The call details can be obtained from the Call object provided. |
onCallEndButtonPressed() | This method is called when the user presses the end call button. |
onUserJoined(user: RTCUser) | This method is called when any other user joins the call. The user details can be obtained from the User object provided. |
onUserLeft(user: RTCUser) | This method is called when a user leaves the call. The details of the user can be obtained from the provided User object. |
onUserListChanged(users: ArrayList<RTCUser?>) | This method is triggered every time a participant joins or leaves the call, providing the list of users active in the call. |
onAudioModeChanged(devices: ArrayList<AudioMode?>) | This callback is triggered if any new audio output source is available or becomes unavailable. |
onCallSwitchedToVideo(callSwitchRequestInfo: CallSwitchRequestInfo) | This callback is triggered when an audio call is converted into a video call. |
onUserMuted(muteObj: RTCMutedUser) | This method is triggered when a user is muted in the ongoing call. |
onRecordingToggled(recordingInfo: RTCRecordingInfo) | This method is triggered when a recording starts/stops. |
onError(e: CometChatException) | This method is called when there is some error in establishing the call. |
Settings
ThePresentationSettings class is the most important class when it comes to implementing the Calling feature. This class allows you to customize the overall calling experience. The properties for the call/conference can be set using the PresentationSettingsBuilder class. This gives you an object of the PresentationSettings class which you can pass to the joinPresentation() method to start the call.
The mandatory parameters required for any call/conference to work are:
- Context - context of the activity/application
- RelativeLayout - A RelativeLayout object in which the calling UI is loaded
| Setting | Description |
|---|---|
setIsPresenter(boolean value) | If set to true, the user will join the call as a presenter. If set to false, the user will join the call as an audience member. Default value = false |
setDefaultLayoutEnable(boolean value) | If set to true enables the default layout for handling the call operations. If set to false, it hides the button layout and just displays the Call View. Default value = true |
setIsAudioOnly(boolean value) | If set to true, the call is supposed to be an audio call. If set to false, the call is supposed to be a video call. Default value = false |
showEndCallButton(boolean value) | If set to true, it displays the End Call Button in the Button Layout. If set to false, it hides the End Call Button in the Button Layout. Default value = true |
showSwitchCameraButton(boolean value) | If set to true, it displays the Switch Camera Button in the Button Layout. If set to false, it hides the Switch Camera Button in the Button Layout. Default value = true |
showMuteAudioButton(boolean value) | If set to true, it displays the Mute Audio Button in the Button Layout. If set to false, it hides the Mute Audio Button in the Button Layout. Default value = true |
showPauseVideoButton(boolean value) | If set to true, it displays the Pause Video Button in the Button Layout. If set to false, it hides the Pause Video Button in the Button Layout. Default value = true |
showAudioModeButton(boolean value) | If set to true, it displays the Audio Mode Button in the Button Layout. If set to false, it hides the Audio Mode Button in the Button Layout. Default value = true |
startWithAudioMuted(boolean value) | This ensures the call is started with the audio muted if set to true. Default value = false |
startWithVideoMuted(boolean value) | This ensures the call is started with the video muted if set to true. Default value = false |
setDefaultAudioMode(boolean value) | This method can be used if you wish to start the call with a specific audio mode. The available options are CometChatCallsConstants.AUDIO_MODE_SPEAKER, CometChatCallsConstants.AUDIO_MODE_EARPIECE, CometChatCallsConstants.AUDIO_MODE_BLUETOOTH, CometChatCallsConstants.AUDIO_MODE_HEADPHONES. Default value = false |
showRecordingButton(boolean value) | If set to true, it displays the Recording Button. If set to false, it hides the Recording Button. Default value = false |
setEventListener(new CometChatCallsEventsListener()) | The CometChatCallsEventsListener listener provides you callbacks. |
Best Practices
Limit Number of Presenters
Limit Number of Presenters
Keep the number of presenters to 5 or fewer for optimal performance. More presenters increase bandwidth requirements and can degrade the experience for viewers.
Set Appropriate User Roles
Set Appropriate User Roles
Clearly distinguish between presenters and viewers using
setIsPresenter(). Presenters have full control (audio, video, screen share), while viewers are passive consumers.Test with Maximum Capacity
Test with Maximum Capacity
Test your presentation with close to 100 participants to ensure your infrastructure can handle the load. Monitor bandwidth and CPU usage during testing.
Provide Clear UI Indicators
Provide Clear UI Indicators
Show visual indicators to users about their role (presenter vs viewer) and available controls. Viewers should understand they cannot send audio/video.
Handle Presenter Disconnections
Handle Presenter Disconnections
Implement logic to handle scenarios where a presenter disconnects unexpectedly. Consider promoting another user to presenter or ending the session gracefully.
Troubleshooting
Viewer Cannot See Presenter Video
Viewer Cannot See Presenter Video
Symptom: Viewers join the presentation but cannot see the presenter’s video stream.Cause: Presenter may have started with video muted, or network issues are preventing video transmission.Solution: Ensure the presenter has
startWithVideoMuted(false) in their settings. Check network connectivity and bandwidth for both presenter and viewers.Presentation Join Failed
Presentation Join Failed
Symptom:
joinPresentation() fails with “Invalid call token” error.Cause: The call token is invalid or expired.Solution: Ensure you’re using a valid call token generated for the specific session. Verify the token hasn’t expired and matches the session ID.Maximum Presenter Limit Reached
Maximum Presenter Limit Reached
Symptom: User cannot join as presenter even though
setIsPresenter(true) is set.Cause: The maximum limit of 5 presenters has been reached.Solution: Wait for an existing presenter to leave, or join as a viewer instead. Implement logic to check presenter count before allowing users to join as presenters.