Record HTML5 SpeechSynthesisUtterance generated speech to file
问题 I am able to generate speech from text using Chrome's Speech Synthesis API (in Version 33.0.1750.112 beta-m) in the following manner var transcript = document.getElementById("speechTxt").value; var msg = new SpeechSynthesisUtterance(transcript); speechSynthesis.speak(msg); Now I want to save this speech in a file (maybe using WebAudio API). Is this possible through some function call? I have looked at the methods in Speech Synthesis API and there is nothing to save this speech data. Using