サーバー側の API に対して「AJAX」リクエストを行うと、オーディオを再生できません。
IBM の Watson Text-to-Speech サービスを使用してテキストから音声を提供するバックエンド Node.js コードがあります。
var render = function(request, response) {
var options = {
text: request.params.text,
voice: 'VoiceEnUsMichael',
accept: 'audio/ogg; codecs=opus'
};
synthesizeAndRender(options, request, response);
};
var synthesizeAndRender = function(options, request, response) {
var synthesizedSpeech = textToSpeech.synthesize(options);
synthesizedSpeech.on('response', function(eventResponse) {
if(request.params.text.download) {
var contentDisposition = 'attachment; filename=transcript.ogg';
eventResponse.headers['content-disposition'] = contentDisposition;
}
});
synthesizedSpeech.pipe(response);
};
私はそれを処理するためのクライアント側のコードを持っています:
var xhr = new XMLHttpRequest(),
audioContext = new AudioContext(),
source = audioContext.createBufferSource();
module.controllers.TextToSpeechController = {
fetch: function() {
xhr.onload = function() {
var playAudio = function(buffer) {
source.buffer = buffer;
source.connect(audioContext.destination);
source.start(0);
};
// TODO: Handle properly (exiquio)
// NOTE: error is being received
var handleError = function(error) {
console.log('An audio decoding error occurred');
}
audioContext
.decodeAudioData(xhr.response, playAudio, handleError);
};
xhr.onerror = function() { console.log('An error occurred'); };
var urlBase = 'http://localhost:3001/api/v1/text_to_speech/';
var url = [
urlBase,
'test',
].join('');
xhr.open('GET', encodeURI(url), true);
xhr.setRequestHeader('x-access-token', Application.token);
xhr.responseType = 'arraybuffer';
xhr.send();
}
}
バックエンドは期待どおりの音声を返しますが、成功メソッドの playAudio は呼び出されません。代わりに、handleError が常に呼び出され、エラー オブジェクトは常に null です。
私が間違っていることと、これを修正する方法を誰かが説明できますか? それは大歓迎です。
ありがとう。
注: URL の文字列「test」は、バックエンドでテキスト パラメータになり、synthesizeAndRender のオプション変数になります。