recorder.js 到 node 到 azure 说话人识别
recorder.js to node to azure speaker recognition
我有一个浏览器应用程序,它通过麦克风记录用户的声音并使用 recorder.js 导出到 WAV 文件。我认为将其转换为数据 url 并将其 post 转换为节点。然后,我尝试将音频发送到 Microsoft Azure Speaker Recognition API,但我总是收到 "Invalid Audio Format: Not a WAVE file - no RIFF header"。
有没有办法添加 RIFF header 或者是否有关于 recorder.js 或转换为 base64 并从中删除这些 header 的东西?有没有办法将它们添加回去?
代码:
INDEX.HTML
rec.exportWAV(function (blob) {
var reader = new window.FileReader();
reader.readAsDataURL(blob);
reader.onloadend = function () {
base64 = reader.result;
console.log(base64)
$.ajax({
type: "POST",
url: '/addVoiceToProfile',
data: { userId: '', voiceId: "XXX-XXX", voice: base64, sampleRate: audioContext.sampleRate / 1000 },
success: function (results) {
console.log(results)
}
})
}
})
节点路线:
app.post('/addVoiceToProfile', function(req, res){
var voicedata = req.body.voice;
var base64Data = voicedata.replace(/^data:([A-Za-z-+/]+);base64,/, '');
addVoicesToProfile(base64Data, req.body.voiceId).then(function(results){
res.send(results)
})
})
添加语音到配置文件:
function addVoicesToProfile(voice, id, user){
return new Promise(function (resolve, reject) {
var url = AzureParameters.endPoint+"/spid/v1.0/verificationProfiles/"+id+"/enroll";
request({
url:url,
headers:{'Content-Type':'audio/wave', 'Ocp-Apim-Subscription-Key':AzureParameters.key},
body: Buffer.from(voice, 'base64').toString('binary'),
method: "POST",
json: true
}, function(err, response, body){
if(err) return reject(err);
return resolve(body)
})
})
}
看来问题实际上出在文件的发送方式上。我不知道为什么如果它在 post 的正文中作为 wav 发送,而不是在 post 中作为数据发送,但这是我的工作代码,如果它对任何人都有帮助的话未来:
html:
我用 作为 html。它包括 wav 的编码。正如答案所暗示的那样,我所做的唯一更改是 post 到我的服务器,而不是直接到 MS Azure 服务。
节点路线:
这花了我一段时间,因为我无法让节点看到我正在发送的文件。此外,我正在使用 bodyParser,因此 post 请求的原始主体在我看到它之前就被摆弄了。这是我 post 请求的路线:
app.post('/uploadAudio', function (req, res, next) {
var data = new Buffer('');
req.on('data', function (chunk) {
data = Buffer.concat([data, chunk]);
});
req.on('end', function () {
req.rawBody = data;
next();
});
}, function (req, res) {
addVoicesToProfile(req.rawBody)
})
我希望这对某人有所帮助,因为这两个部分都花了我太长时间来解决!
我有一个浏览器应用程序,它通过麦克风记录用户的声音并使用 recorder.js 导出到 WAV 文件。我认为将其转换为数据 url 并将其 post 转换为节点。然后,我尝试将音频发送到 Microsoft Azure Speaker Recognition API,但我总是收到 "Invalid Audio Format: Not a WAVE file - no RIFF header"。
有没有办法添加 RIFF header 或者是否有关于 recorder.js 或转换为 base64 并从中删除这些 header 的东西?有没有办法将它们添加回去?
代码: INDEX.HTML
rec.exportWAV(function (blob) {
var reader = new window.FileReader();
reader.readAsDataURL(blob);
reader.onloadend = function () {
base64 = reader.result;
console.log(base64)
$.ajax({
type: "POST",
url: '/addVoiceToProfile',
data: { userId: '', voiceId: "XXX-XXX", voice: base64, sampleRate: audioContext.sampleRate / 1000 },
success: function (results) {
console.log(results)
}
})
}
})
节点路线:
app.post('/addVoiceToProfile', function(req, res){
var voicedata = req.body.voice;
var base64Data = voicedata.replace(/^data:([A-Za-z-+/]+);base64,/, '');
addVoicesToProfile(base64Data, req.body.voiceId).then(function(results){
res.send(results)
})
})
添加语音到配置文件:
function addVoicesToProfile(voice, id, user){
return new Promise(function (resolve, reject) {
var url = AzureParameters.endPoint+"/spid/v1.0/verificationProfiles/"+id+"/enroll";
request({
url:url,
headers:{'Content-Type':'audio/wave', 'Ocp-Apim-Subscription-Key':AzureParameters.key},
body: Buffer.from(voice, 'base64').toString('binary'),
method: "POST",
json: true
}, function(err, response, body){
if(err) return reject(err);
return resolve(body)
})
})
}
看来问题实际上出在文件的发送方式上。我不知道为什么如果它在 post 的正文中作为 wav 发送,而不是在 post 中作为数据发送,但这是我的工作代码,如果它对任何人都有帮助的话未来:
html:
我用
节点路线:
这花了我一段时间,因为我无法让节点看到我正在发送的文件。此外,我正在使用 bodyParser,因此 post 请求的原始主体在我看到它之前就被摆弄了。这是我 post 请求的路线:
app.post('/uploadAudio', function (req, res, next) {
var data = new Buffer('');
req.on('data', function (chunk) {
data = Buffer.concat([data, chunk]);
});
req.on('end', function () {
req.rawBody = data;
next();
});
}, function (req, res) {
addVoicesToProfile(req.rawBody)
})
我希望这对某人有所帮助,因为这两个部分都花了我太长时间来解决!