Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to use a grammar with the HTML 5 speech input API?

I'm working with the HTML 5 speech input API and I want to let the server know which answers it can expect to be returned from the speech input. Is there a way to set a list of possible inputs?

like image 376
user735646 Avatar asked Dec 30 '11 20:12

user735646


2 Answers

In Google Chrome you can not use grammars yet, overall they decided to use free-form recognition only. Relevant question is Grammar in Google speech API.

Grammars are supported in Firefox Web Speech API, but the feature is experimental.

If your browser supports HTML5 audio, you might want to try to recognize words from your grammar using Pocketsphinx.js library, it provides javascript-based recognizer which should be very good for grammars.

like image 51
Nikolay Shmyrev Avatar answered Oct 24 '22 02:10

Nikolay Shmyrev


I assume your a talking about the Speech Input API Specification as defined by the W3C. According to this specification grammars are supported, which is the method used by speech recognition systems to restrict possible inputs. Look for the section titled "Speech recognition grammars". The problem will be how well it is supported in the particular browser that is being used, which is the case for an HTML 5 specific function since it is not a completed standard yet. Chrome seems to be the most up to date with the standard. Checkout this blog post from the Chrome team on implementing the Speech Input API.

like image 22
Kevin Junghans Avatar answered Oct 24 '22 03:10

Kevin Junghans