I have been triying to create a real time speech to text using react js as front end and python flask as backend. using socket to connect between these to send real time data i have tried many ways but the data is not correctly converted or no result is printing as output. The python flask recieved the audio data continously as bytes and use pushAudioStream
in azure python speech sdk to create a stream of AudioInputStream class and given it to configure conversation_transcriber of azure speech python sdk / speechRecognizer. but the result is not as satisfying please help with a suitable solution
i need output as a text which i have given as input as speech using react js in front end and flask as backend
The code below is for speech-to-text applications using React as the frontend, Flask as the backend and Socket. IO.