I'm trying pocketsphinx on android devices. I want to loose the grammar requirements and only catch the some certain words. For example, "I like (any other phrases) playing tennis", it only catches "I like" and ignores any other words spoken by users until "playing tennis" is heard. Is there any way to do this so that the speech recognition can be much flexible? I didn't see any related syntax in JSGF specification.
Thank you!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I'm trying pocketsphinx on android devices. I want to loose the grammar requirements and only catch the some certain words. For example, "I like (any other phrases) playing tennis", it only catches "I like" and ignores any other words spoken by users until "playing tennis" is heard. Is there any way to do this so that the speech recognition can be much flexible? I didn't see any related syntax in JSGF specification.
Thank you!
There is a special keyword spotting search for keywords. See pocketsphinx android demo:
http://cmusphinx.sourceforge.net/wiki/tutorialandroid
See also
http://stackoverflow.com/questions/24463721/keyword-is-not-detected-using-pocketsphinx-on-android/24463965#24463965
Thank you!