Voice Recognition API, will Google Voice do this?

I have an idea for an Android application, I want to tell the commands and ask the application to listen to them and perform some actions.

For example, I want my application to sit idle and listen to my voice, when it hears me say β€œstart”, the application will start to do something until I say β€œstop”.

The idea is to remove the phone and not physically touch it to control my application.

Is this possible with any current APIs? If so, which ones should I look at?

+4
source share
1 answer

You can watch Google voice commands.

http://www.google.com/mobile/voice-actions/

Alternatively, if you want to configure the application, you can use the google voice service and write an operation that will call the voice service and return the result. Check out the link below for an example application.

http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/VoiceRecognition.html

+5
source

Source: https://habr.com/ru/post/1338992/


All Articles