The recognizer-intent tag has no wiki summary.
1
vote
0answers
662 views
Google speech recognition API and language model
I have seen the undocumented API for speech recognition from Google (https://www.google.com/speech-api/v1/recognize?)
My assumption is that Android RecognizerIntent uses the same API.
Since the ...
1
vote
0answers
102 views
Pass additional Extras with RecognizerIntent
I am trying to call the RecognizerIntent from my app, and get the results back associated with a specific ID. I am struggling to figure out how I can pass my id so that it is returned in the extras ...
-1
votes
1answer
367 views
Android RecognizerIntent Speech recognition
How to handle the visibility of an image(ImageView) in the event the RecognizerIntent finishes due to the user not speaking
if (RecognizerIntent.EXTRA_RESULTS == null){
...
3
votes
2answers
112 views
Data Security with RecognizerIntent in Android app
I'm developing an Android voice recognition app using RecognizerIntent. The client is concerned with data being transmitted between device and Google's speech recognition server and whether it can be ...
1
vote
0answers
236 views
Add Speech to Text for Android App With Recognizer Intent or Keyboard Mic
I've current got a RecognizerIntent up and running so that it returns a list of strings of possible sentences to me. However, I would like to improve upon this.
When I press on my Edit Text box, I ...
10
votes
2answers
542 views
Burmese speech to text conversion in android?
Can we add custom language for RecognizerIntent?
I have search many SO Question like Is there a speech to text API by Google?
That solve my problem of using limited number of language during Speech ...
2
votes
1answer
244 views
How to correctly launch Voice Recognition activity from an activity with singleInstance launch mode?
Already saw another thread which mentions that an activity with RecognizerIntent was not working correctly if launched from within an activity with singleInstance launch mode. So I would like to know ...
0
votes
1answer
3k views
Implementing RecognizerIntent in android
I am working with recognizerintent in android. can someone help me to implement the "EXTRA_WEB_SEARCH_ONLY " in this code:
package com.example.android.apis.app;
import com.example.android.apis.R;
...
7
votes
4answers
2k views
RecognizerIntent: how to add a bundle to a pending intent
I am implementing an activity that responds to the RecognizerIntent. Among others this activity must handle two incoming extras that specify a pending intent and its extras-bundle:
...