I am trying to use Android's Speech API to perform speech-to-text on user-spoken input and I would also like to get a copy of the audio they just spoke (to play back for other app features). It looks like the RecognitionListener has a method onBufferReceived to get the bytes recorded, but I don't know how to make a usable audio file out of them. Can anyone explain how I can gather all the bytes from that method's calls and produce a working audio file from them?
I see this post doing something similar, but no details on what to actually do with the byte[] when it's populated