start Recording
fun startRecording(webhookUrl: String, awsDirPath: String, config: JSONObject, transcription: PostTranscriptionConfig)
This method can be used to start cloud recording of the meeting.
Events:
onRecordingStateChanged— emitted when the recording state changesonRecordingStarted— emitted when the recording has started
Code Example:
meeting.startRecording(
"https://example.com/webhook", // webhook URL
null, // AWS directory path
null, // recording config
null // post-transcription config
)
Content copied to clipboard
Parameters
webhook Url
the webhook URL to receive recording events
aws Dir Path
The AWS S3 directory path for storing the recording, or null.
config
Additional recording configuration as a JSONObject, or null.
transcription
The PostTranscriptionConfig for post-recording transcription, or null.