我的代码,它获取数据并通过ajax将数据发送到flask服务器。如何将音频文件存储在可以播放的服务器中
.then(stream => {
handlerFunction(stream)
})
function handlerFunction(stream) {
rec = new MediaRecorder(stream);
rec.ondataavailable = e => {
audioChunks.push(e.data);
if (rec.state == "inactive") {
let blob = new Blob(audioChunks, {type: 'audio/wav'});
sendAudioToServer(blob, URL.createObjectURL(blob))
}
}
}