I have built a web based Speech-to-Text application with Google Speech-to-Text API.
The application flow: 1. Get audio stream from browser 2. Stream audio data to a speech recognition service and get real time results as our user talks [image: 0_MJ6ydPicL3CrJ6zg.png] I have referenced the sample code <https://github.com/googleapis/nodejs-speech> in my application, the streamingRecognize request works perfectly with a signal client call, and my server can receive the interim-transcription result from Google Speech API. However, when there are more then one client call streamingRecognize simultaneously, Google Speech API will get stuck. So, may I know how to handle more than one streamingRecognize request concurrently? Do I need to create another client to process the second streamingRecognize request? Thanks. Back-end server specifications: - NodeJS - Socket.io -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/052726a1-0668-4443-9f4e-4c1ddc5c0b1d%40googlegroups.com.
