I\'m trying to convert speech to text in node server where speech recording happens in the browser using AudioContext. I\'m Able to send int16Array buffer(recorded data) to my n
Solved it !!! We can write the buffer directly to recognizerStream which created from GoogleSpeech as follows:
const recognizer = getGoogleSpeechStreamRecognizer(); recognizer.write(int16ArrayBuffer)