RecordingService

The RecordingService lets you record conferences, receive information about the current recording, and be notified about the recording status. Before using the service, see the Recording Conferences document to learn how to set the preferred recording configuration and download recordings.

Events

statusUpdated

statusUpdated(isRecording: boolean, recording: Recording): void

Emitted when the recording status has changed.

example

VoxeetSDK.recording.on("statusUpdated", (recording, isRecording) => {

});

Parameters:

NameTypeDescription
isRecordingbooleanThe status of the recording.
recordingRecordingThe current recording.

Returns: void

Accessors

current

• get current(): Recording | null

Returns information about the current recording. Use this accessor if you wish to receive information that is available in the Recording object, such as the ID of the participant who started the recording or the timestamp that informs when the recording was started.

Returns: Recording | null

Methods

start

start(): any

Starts recording a conference. For more information, see the Recording Conferences article.

Returns: any


stop

stop(): any

Stops recording a conference.

Returns: any