作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在 JavaScript 中录制麦克风的音频并将其提交到 DialogFlow,而不通过服务器?
最佳答案
这个问题分为两个部分:
为了以 DialogFlow 能够理解的格式录制麦克风音频,我使用 opus-recorder ,然后使用以下代码转换它返回的 blob:
function BlobToDataURL(blob: Blob) {
return new Promise((resolve, reject)=>{
const reader = new FileReader();
reader.addEventListener("loadend", e=>resolve(reader.result as string));
reader.readAsDataURL(blob);
}) as Promise<string>;
}
const micRecorder = new Recorder({
encoderSampleRate: 16000,
originalSampleRateOverride: 16000, // necessary due to Google bug? (https://github.com/chris-rudmin/opus-recorder/issues/191#issuecomment-509426093)
encoderPath: PATH_TO_ENCODER_WORKER_JS,
});
micRecorder.ondataavailable = async typedArray=>{
const audioData = new Blob([typedArray], {type: "audio/ogg"});
const audioData_dataURL = await BlobToDataURL(audioData);
const audioData_str = audioData_dataURL.replace(/^data:.+?base64,/, "");
// here is where you need part 2, to actually submit the audio to DialogFlow
};
micRecorder.start();
要将音频数据提交到 DialogFlow,请在此处查看我的答案:https://stackoverflow.com/a/57857698/2441655
关于javascript - 如何在 JavaScript 中录制麦克风音频并提交到 DialogFlow?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57859703/
我是一名优秀的程序员,十分优秀!