startTranscription

This method can be used to start real-time transcription of the meeting audio.

Events:

  • onTranscriptionStateChanged — emitted when the transcription state changes
  • onTranscriptionText — emitted repeatedly as transcription text becomes available

Code Example:


val config = TranscriptionConfig(
    "https://example.com/webhook", // webhook URL
    null                           // summary config
)
meeting.startTranscription(config)

Parameters

config

the TranscriptionConfig specifying transcription settings