I want to create the STT to act as server(To receive audio chunks and send back the full sentence to the client) using websocket and I found this example here:
Sockect Example
How do I handle multiple clients at the same time?For example client_1 and client_2 are connected and sending audio chunks at the same time so maybe we will face a collision problem here between the chunks of both, because I'm using the same method call feed_audio to feed the STT
I want to create the STT to act as server(To receive audio chunks and send back the full sentence to the client) using websocket and I found this example here: Sockect Example
How do I handle multiple clients at the same time?
For example client_1 and client_2 are connected and sending audio chunks at the same time so maybe we will face a collision problem here between the chunks of both, because I'm using the same method call feed_audio to feed the STT