Questions tagged [google-voice-search]

Google Voice Search or Search by Voice is a Google product that allows users to use Google Search by speaking on a mobile phone or computer.

This tag can be used for the questions that are related to the use of Google Voice Search features.

Official page: http://www.google.co.in/insidesearch/features/voicesearch/

39 questions
1
vote
0 answers

Pass additional Data to Searchable using voiceSearch Android

In order to pass additional Data I use @Override onQueryTextSubmitString query) and intent.putExtra(), which works fine when the user enters the text in the searchwidget. But it seems the function is not called when the users uses voiceSearch. Is…
Sleik
  • 341
  • 4
  • 11
0
votes
0 answers

Android voice input hangs my application on Meizu M5

I use dialogless voice input in my Android app: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); MyRecognitionListener listener = new…
0
votes
1 answer

How can I use RecognizerIntent to force using Turkish?

to voice recognation: I use this code to detect: Intent myintent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); myintent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); …
CompEng
  • 7,161
  • 16
  • 68
  • 122
0
votes
1 answer

Error running Google Voice API code

With my basic knowledge on Android, I'm trying to play with the Google voice APIs and followed the example here and to write an app, which would allow me to call a hardcoded number. Unfortunately i'm getting an error saying < identifier > expected,…
0
votes
0 answers

Use adb to read file

Is there a way to list all files inside an Android app? I want to access the file at the following URI: content://com.google.android.googlequicksearchbox.AudioProvider/VoiceSearchOriginalAudioRecording3.amr and its stored by my app with the package…
user3878429
0
votes
0 answers

Offline speech recognition in Android virtual device

I am developing an Android app which includes speech recognition. Google Voice typing in my AVD works fine only when there is an internet connection. But I wanted it to work offline. I tried for offline speech recognition but I didn't find that…
0
votes
1 answer

Google API for voice assistant in web application

we are basically looking for voice to voice support in Google API. Currently using Alexa to serve the purpose but we like to use google API that should get question in voice format and respond back with answer in voice format.Please give us a clue.
capa
  • 9
  • 2
0
votes
1 answer

Google voice search using RecognizerIntent.ACTION_RECOGNIZE_SPEECH does not perform action

I am developing an app where user can speak the command and it will get executed. Just like "Voice Search" app from Google. I want to use set of commands associated actions of Voice Search. My code is as follows: @Override public void…
0
votes
1 answer

Android Voice input without click

I am new to android development. I need a solution for the new app I am developing which takes voice input and gives output in voice by mapping with a mapping database. Current program takes voice input with onlick on button . I need a soultion…
1 2
3