SDK не сохраняет аудио и не имеет встроенных функций для этого.
В версии 1.11.0 был добавлен новый API к объекту соединения, чтобы вы могли видеть сообщения, отправленные на служба, из которой вы можете извлечь аудио и собрать файл волны самостоятельно.
Вот несколько машинописных текстов, которые делают это:
import * as SpeechSdk from "microsoft-cognitiveservices-speech-sdk";
import * as fs from "fs";
const filename: string = "input.wav";
const outputFileName: string = "out.wav";
const subscriptionKey: string = "<SUBSCRIPTION_KEY>";
const region: string = "<SUBSCRIPTION_REGION>";
const speechConfig: SpeechSdk.SpeechConfig = SpeechSdk.SpeechConfig.fromSubscription(subscriptionKey, region);
// Load the audio from a file, alternately you could use
// const audioConfig:SpeechSdk.AudioConfig = SpeechSdk.AudioConfig.fromDefaultMicrophone() in a browser();
const fileContents: Buffer = fs.readFileSync(filename);
const inputStream: SpeechSdk.PushAudioInputStream = SpeechSdk.AudioInputStream.createPushStream();
const audioConfig: SpeechSdk.AudioConfig = SpeechSdk.AudioConfig.fromStreamInput(inputStream);
inputStream.write(fileContents);
inputStream.close();
const r: SpeechSdk.SpeechRecognizer = new SpeechSdk.SpeechRecognizer(speechConfig, audioConfig);
const con: SpeechSdk.Connection = SpeechSdk.Connection.fromRecognizer(r);
let wavFragmentCount: number = 0;
const wavFragments: { [id: number]: ArrayBuffer; } = {};
con.messageSent = (args: SpeechSdk.ConnectionMessageEventArgs): void => {
// Only record outbound audio mesages that have data in them.
if (args.message.path === "audio" && args.message.isBinaryMessage && args.message.binaryMessage !== null) {
wavFragments[wavFragmentCount++] = args.message.binaryMessage;
}
};
r.recognizeOnceAsync((result: SpeechSdk.SpeechRecognitionResult) => {
// Find the length of the audio sent.
let byteCount: number = 0;
for (let i: number = 0; i < wavFragmentCount; i++) {
byteCount += wavFragments[i].byteLength;
}
// Output array.
const sentAudio: Uint8Array = new Uint8Array(byteCount);
byteCount = 0;
for (let i: number = 0; i < wavFragmentCount; i++) {
sentAudio.set(new Uint8Array(wavFragments[i]), byteCount);
byteCount += wavFragments[i].byteLength;
}
// Set the file size in the wave header:
const view = new DataView(sentAudio.buffer);
view.setUint32(4, byteCount, true);
view.setUint32(40, byteCount, true);
// Write the audio back to disk.
fs.writeFileSync(outputFileName, sentAudio);
r.close();
});
Он загружается из файла, чтобы я мог проверить в NodeJS вместо браузера, но основная часть та же.