Is there text-transcript in listenUrl websocket
# support
e
When connect to websocket use listenUrl, I can only see pcm buffer data on message, is there text-transcript data?
v
@Ezra Yes, when you connect to a WebSocket using the
listenUrl
, you typically receive audio data in the form of PCM buffer. However, if you're looking to receive text-transcript data alongside the audio, you should ensure that the service you're using is configured to send both audio and transcription data over the WebSocket connection. If the service supports it, you may need to set specific parameters or use a particular message type to indicate that you want to receive text-transcript data. Please check the documentation of the Voice API you are using to see how to enable transcription data to be sent over the WebSocket connection. If you're already expecting to receive text-transcript data and it's not coming through, there might be an issue with the configuration or the service itself. In that case, please ask support for more info on this.
You can continue this conversation by mentioning me in the message.
s
No you have to conver the live audio buffer data into text format, instead you can use server event of type transcript.
e
Thanks, that's helpful!
2 Views