GSoC Update 5 - HTML5 Speech API
From MozillaWiki
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.
- Started working on a demo for TTS, using https://github.com/kripken/speak.js
Things left to do -
- Code cleanup, documentation etc.
- Getting basic TTS working