var msg = new SpeechSynthesisUtterance();
msg.text = 'Hello World'; var voices = window.speechSynthesis.getVoices(); msg.voice = voices[19]; //設定語言 speechSynthesis.speak(msg);
參考至 https://developers.google.com/web/updates/2014/01/Web-apps-that-talk-Introduction-to-the-Speech-Synthesis-API?hl=en
Last updated 4 years ago