Audio transcription delivery
Learn how audio transcription is delivered to clients.
阅读时间1 分钟最后更新于 7 个月前
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);}. . .