百度语音合成 之 返回值问题

在百度语音合成浏览器跨域访问示例 中展示了如何请求合成的语音,在请求方式及参数基本说明 这块说明了返回值问题:

需要根据 Content-Type的头部来确定是否服务端合成成功
如果合成成功,返回的Content-Type以“audio”开头

  • aue =3 ,返回为二进制mp3文件,具体header信息 Content-Type: audio/mp3;
  • aue =4 ,返回为二进制pcm文件,具体header信息 Content-Type:audio/basic;codec=pcm;rate=16000;channel=1
  • aue =5 ,返回为二进制pcm文件,具体header信息 Content-Type:audio/basic;codec=pcm;rate=8000;channel=1
  • aue =6 ,返回为二进制wav文件,具体header信息 Content-Type: audio/wav;
    如果合成出现错误,则会返回json文本,具体header信息为:Content-Type: application/json。其中sn字段主要用于DEBUG追查问题

错误示例:
{"err_no":500,"err_msg":"notsupport.","sn":"abcdefgh","idx":1}

如果我需要音频可视化的话该怎么做呢?

1.设置响应头

  let xhr = new XMLHttpRequest();
  xhr.open('POST', url);
  xhr.responseType = 'arraybuffer'; //更改响应头为arraybuffer

2.接收与数据转化

xhr.onreadystatechage = function(){
	if(xhr.state==200){
		let arrayBuffer = xhr.response;
		let byteArray = new Uint8Array(arrayBuffer);
		// 使用 web api 操作二进制的音频数组
	}
}

你可能感兴趣的:(随笔,百度语音,百度语音合成,语音合成可视化)