GSoC Update 5 - HTML5 Speech API

From MozillaWiki
Jump to: navigation, 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