Skip to content Skip to sidebar Skip to footer

How To Create Wav Stream In Javascript With Help Of Recordrtc?

I'm trying to create an application to transcribe a streaming audio recording. The idea is to capture the user's microphone stream using RecordRTC and send it in chunks to a gunico

Solution 1:

Frank, do you plan to use Speech SDK to transcribe audio using a Push or Pull input stream? You do not need audio chunks in a WAV format for this. You feed raw PCM to the input stream, at the default format of 16khz, 16bit/sample mono. See sample code on GitHub.

Darren

Post a Comment for "How To Create Wav Stream In Javascript With Help Of Recordrtc?"