Is it possible to save the transcribed audio to a file or even intercept the audio blobs using the Java SDK ? Currently I'm trying with com.microsoft.cognitiveservices.speech:client-sdk:1.19.0
I'm looking at the SDK but doesn't have any clear documentation on how to achieve this.
I tried the following without any success:
SpeechRecognizer(config, AudioConfig.fromWavFileOutput(file.toString()))
Connection connection = Connection.fromRecognizer(reco);
connection.messageSent... --- this is missing from the Java SDK
Am I missing something ?
Thanks in advance