js文字转语音

Web Speech API的语音合成接口是语音服务的控制器接口;这可以用于检索设备上可用的合成声音、启动和暂停语音以及其他命令的信息。

const synth = window.speechSynthesis;

var text = '你好';
const utterThis = new SpeechSynthesisUtterance(text);
synth.speak(utterThis);//开始说话

synth.pause();//暂停

synth.resume();//继续

synth.cancel();//停止

官网链接:SpeechSynthesis - Web APIs | MDN

你可能感兴趣的:(前端,js,javascript,前端,开发语言)