Skip to main content
Version: v4

Recording (Beta)

This section will guide you to implement call recording feature for the voice and video calls.

Implementation

Once you have decided to implement Default Calling or Direct Calling calling and followed the steps to implement them. Just few additional listeners and methods will help you quickly implement call recording in your app.

You need to make changes in the CometChat.startCall method and add the required listeners for recording. Please make sure your callSettings is configured accordingly for Default Calling or Direct Calling.

A basic example of how to make changes to implement recording for a direct call/ a default call:

// Add listeners onRecordingStarted and onRecordingStopped to the startCall method
const defaultLayout = true;
const audioOnly = false;

const callListener = new CometChatCalls.OngoingCallListener({
onRecordingStarted: (event) =>
console.log("Listener => onRecordingStarted", event.user),
onRecordingStopped: (event) =>
console.log("Listener => onRecordingStopped", event.user),
});

const callSettings = new CometChatCalls.CallSettingsBuilder()
.enableDefaultLayout(defaultLayout)
.setIsAudioOnlyCall(audioOnly)
.setCallListener(callListener)
.build();

const htmlElement = document.getElementById("ELEMENT_ID");
CometChatCalls.startSession(callToken, callSettings, htmlElement);

Settings for call recording

The CallSettingsclass allows you to customise the overall calling experience. The properties for the call/conference can be set using the CallSettingsBuilder class. This will eventually give you and object of the CallSettings class which you can pass to the startSession() method to start the call.

The options available for recording of calls are:

SettingDescription
showRecordingButton(showRecordingButton: boolean)If set to true it displays the Recording button in the button Layout.
if set to false it hides the Recording button in the button Layout.
Default value = false
startRecordingOnCallStart(startRecordingOnCallStart: boolean)If set to true call recording will start as soon as the call is started.
if set to false call recording will not start as soon as the call is started.
Default value = false

For the use case where you wish to align your own custom buttons and not use the default layout provided by CometChat, you can embed the buttons in your layout and use the below methods to perform the corresponding operations:

Start Recording

You can use the startRecording() method to start call recording.

CometChatCalls.startRecording();

Stop Recording

You can use the stopRecording() method to stop call recording.

CometChatCalls.stopRecording();

Downloading Recording

Currently, the call recordings are available on the CometChat Dashboard under the Calls Section. Recordings can be accessed after clicking on the three dots menu icon to expand the menu and then select "View Recordings". You can refer to the below screenshot. You can refer to the below screenshot.

Image
Image
Image