Skip to content Skip to sidebar Skip to footer

Speech Recognition As A Service.(android)

I am developing android application. I my application I need speech recognition.But I need speech recognition as service. I already create simple speech recognition in which when I

Solution 1:

There is some code that does exactly what you need here:

https://github.com/gast-lib/gast-lib/blob/master/library/src/root/gast/speech/activation/SpeechActivationService.java

See it running by downloading this app.

The code is a Service that runs in the background, listening for the users speech. When the user speaks a certain word, it fires an Intent. The Service also puts up a handy Notification while it is listening. There is some other code that starts and stops it here.

Post a Comment for "Speech Recognition As A Service.(android)"