how to perform continuous speech recognition from microphone using pocketsphinx .how to use gstreamer plugin api in C ?
how to perform continuous speech recognition from microphone using pocketsphinx .how to use gstreamer
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are several APIs for that. One of them is plain pocketsphinx API. You can read pocketsphinx_continuous source in pocketsphinx/src/continuous.c to see how to use it. You can
just include source code from continuous.c into your application.
If you want to work with gstreamer, you first need to learn gstreamer basics. Here you can find some gstreamer documentation.
http://docs.gstreamer.com/display/GstSDK/Basic+tutorials
Unfortunately it’s hard to cover everything in a single response, but the basic sequence of items is:
It’s not different from the python example in pocketsphinx/src/gst-plugin/livedemo.py except you need to call the same methods from C.