Audio transcription delivery
Learn how audio transcription is delivered to clients.
読み終わるまでの所要時間 1 分最終更新 8ヶ月前
The Vivox SDK reports transcribed messages in events. If your organization has not been approved for transcription, then you do not receive events.
vx_evt_transcribed_messagevx_evt_transcribed_messageNote that transcribed messages are different from events, which are the in-channel messages that are exchanged by participants. Transcribed messages are not stored in the channel and account message histories (persistent message archiving), and are only visible to the user that speech-to-text transcription is enabled for.
vx_evt_message. . .void HandleEventMessage(vx_evt_transcribed_message *evt){ printf("Saw %s (lang: %s) from user %s in %s\n", evt->text, evt->language, evt->participant_uri, evt->session_handle);}. . .