Can someone please help me?
I am developing an application with voice recognition via RecognizerIntent.
Which Android version brought in officially the offline recognition available to apps by API? Is there any statement about it?
By what I read until know it is not a choice of the developer if the voice recognition will be done via online service or the offline dictionaries. Am I right? Or are there any documented API to set offline?
Thanks
Now there is offline voice recognition is possible for android 4.1. check this article
article
and also check pochetsphinx
Related
I am developing an android app which needs Speech recognition functionality, I need app should work same as Google Translator app in which it Google translate auto detect language spoken. I checked with Microsoft Azure Speech recognition and Google Speech recognition API in both the API we need to provide language code. I searched all over but did not get any workaround or solution to achieve similar functionality. Please help.
May be I am answering late but it may help
I think problem is very large than it seems. As far as I understood you want to achieve speech-to-text and then translate text to required language.
I think using paid services of microsoft or google or amazon would be helful.
https://azure.microsoft.com/en-in/services/cognitive-services/text-analytics/
https://aws.amazon.com/comprehend/
I ve searched a lot but I did not any solution. If I try to download offline languages I did not see the Turkish language, And I try the Turkish words on it , it gives me back in English.
is there any way to do it in offline mode?
Windows Cognitive Services for speech recognition is work offline mode?
thanks in advance.
Unfortunately I don't think that's possible with Google's voice recognition services at this point.
You can see the list of languages that support offline voice recognition by navigating to:
Settings -> Language & Input -> Google voice typing -> Offline speech recognition.
Unfortunately Turkish (nor my native tongue Bulgarian) is supported there. On a side note though - offline dictionary is supported via Google Translate, so you can use that for offline translations.
You can try http://www.sestek.com/speech-recognition/
They support ASR on Android.
You do not achive this without internet with Google api.
You just wait Google updates.
I want to create application that uses offline Android's builtin voice recognition API. Does anyone have an example? I've tried to use RecognizerIntent API but it still requires internet. I've looked here: https://code.google.com/p/google-voice-typing-integration/. In file ActivityHelper.java they use RecognizerIntent API too.
Thank you!
I'm reasonably confident that offline speech recognition is a Google Voice Typing-only feature. Unless you install something that provides offline recognition APIs, the built-in recognition system will require an Internet connection.
you could use voice control without internet. Just seach "Voice control without internet".
It's a self assigned commands with the use of phoenetic alphabets.
Is there any way I can make an app using jelly bean's offline speech recognition api & choose the sensitivity?
Actually I want to build an app, which tests user's English speaking & score.
If anyone can provide link to an app that currently does the same thing, that will be helpful too, because on that case I wouldn't need build an app to help myself
If you want an offline speech recognition on android, use Pocketsphinx:
http://cmusphinx.sourceforge.net/2011/05/building-pocketsphinx-on-android/
I want to know that how voice recognition in android works? Which library it uses for voice recognition? Does it perform voice recognition process on device/mobile it self or it sends all voice to google servers and receives text in responce?
Thanks,
Sunny.
The 4 Feets.com answer is now very misleading, as the link contains quite a bit of speculative information that turned out to be inaccurate.
Please checkout the VoiceRecognition.java demo in ApiDemos, and the RecognizerIntent reference. Android speech recognition requires an internet connection as the data is sent off to google and you receive a list of possible text translations back.
Have a look at 4 Feets.com 4 Feets.com
They have a nice overview with a little example regarding voice reg in SDK 1.5.