edit-article
Home
Up
Delete
Article Name:
Article Description:
whats NEW ...]
Chapter ID/Name:
Status:
Write
Writing
Written
Add Photo:
Owner ID:
Content:
use HTML
Edit Content
<h1 style="text-align: center;">voice to text</h1> <ol> <li>] WHAT = use 'microphone' button to initiate 'voice to text' in google browser(chrome v##+), </li> <ol> <li>uses google service</li> </ol> <li>] CONCERNS = uses, google service to provide speech recognition service, </li> <ol> <li>should use native(non-live) code </li> </ol> <li>[REFERENCE]</li> <ol> <li>] <a href="http://updates.html5rocks.com/2013/01/Voice-Driven-Web-Apps-Introduction-to-the-Web-Speech-API">Voice Driven Web Apps: Introduction to the Web Speech API - HTML5Rocks Updates</a> </li> <li>] tech = html5, js-api, </li> </ol> <li>[EXAMPLE] - Drop this into your devtools console. </li> <ol> <li>r = new webkitSpeechRecognition;</li> <li>r.continuous = true; </li> <li>r.interimResults = true;</li> <li>r.onresult = function(ev) {</li> <li> console.log(ev.results[ev.results.length-1][0].transcript);</li> <li>};</li> <li>r.start()</li> </ol></ol>