GSoC Update 5 - HTML5 Speech API

From MozillaWiki
Revision as of 06:32, 10 August 2011 by Roshanvid (talk | contribs) (Created page with "Things Accomplished - * Got Event Dispatching working on recognition. Also added support for onerror, onnomatch events. This is what a simple API call now looks like: sr = ne...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Things Accomplished -

  • Got Event Dispatching working on recognition. Also added support for onerror, onnomatch events.

This is what a simple API call now looks like:

sr = new SpeechRequest();
function onReco(event){
 alert(event.detail.hypotheses[0].utterance);
}
sr.onreco = onReco;
sr.start()
  • Implemented user permissions for speech input using PopupNotifications.

Things left to do -

  • Code cleanup, documentation etc.
  • Getting basic TTS working