代码:
function speckText(str){
var url = "http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&text=" + encodeURI(str);
var n = new Audio(url);
n.src = url;
n.play();
}
我是根据https://my.oschina.net/chwencong/blog/778483 里弄的,
前几天还可以有声音,今天测试发现不行。火狐报
HTTP "Content-Type" 中的 "application/json" 不支持。媒体资源 http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&spd=3&text=s 加载失败。
无法播放媒体。没有相应格式的解码器:application/json
谷歌报
Uncaught (in promise) DOMException: Failed to load because no supported source was found.
然后我就测试了所有的语音接口,搜狗的,谷歌的,还有gihub别人封装好的都不行
在线等,哪位大神告知一下