views:

36

answers:

1

Is there an API available in Android as such for Speech To Text (as it is for TTS)? If not then is there a way around like using any 3rd party library etc.? Thank you

A: 

There are 2 APIs for STT:

  1. android.speech.SpeechRecognizer
  2. android.speech.RecognitionService

There is also an sample app available in the latest SDK.

Now the question is how far these APIs are accurate?

Maxood