android 5.1的平板浏览器没有播放声音
项目里使用H5的语音合成播放声音,在PC端的chrome浏览器低版本(v55)是可以正常播放的
toSpeak(text) {
var utterThis = new window.SpeechSynthesisUtterance()
utterThis.text = text;
utterThis.lang = "zh-CN";
utterThis.volume = '1';
utterThis.rate = 1;
utterThis.pitch = 1;
console.log(utterThis)
window.speechSynthesis.speak(utterThis)
}
但是放到android 5.1的平板用chrome浏览器v51不能播放,打印出来的utterThis是空对象,要怎么搞呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Chrome for Android 90 才支持
check SpeechSynthesisUtterance 浏览器兼容性
https://caniuse.com/?search=S...
我查是不支持的