Transcription Text
class TranscriptionText
Represents a segment of transcribed text from the real-time transcription service.
Instances of this class are delivered via onTranscriptionText.
Code Example:
meeting.addEventListener(object : MeetingEventListener() {
override fun onTranscriptionText(data: TranscriptionText) {
val speaker = data.participantName
val text = data.text
val type = data.type // "interim" or "final"
Log.d("Transcription", "[$type] $speaker: $text")
}
})
Content copied to clipboard
See also
MeetingEventListener.onTranscriptionText()