Advertisement
towfiqi

speech

May 4th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var msg = new SpeechSynthesisUtterance('I will let you know!'); msg.pitch = 1.3; msg.rate = 0.8;
  2. msg.voice = speechSynthesis.getVoices().filter(function(voice) { return voice.name == 'Google US English'; })[0];
  3. speechSynthesis.speak(msg);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement