Reputation: 11
I am building a Flutter application and I want to integrate continuous Speech-to-Text recognition. For continuous recognition to work, I need to connect with Azure Speech-to-Text via web socket. I found a documentation for REST and for the SDKs (there is no SDK for Flutter). But not for web socket. How can I connect to Azure STT with a web socket?
I tried to open a web socket connection with this URL:
wss://<endpoint_url>/speech/recognition/continuous?language=<language_code>&format=<audio_format>&subscription-key=<subscription_key>
Upvotes: 1
Views: 709