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
32
votes
6 answers

Google Speech Recognition timeout

I am developing an Android Application that is based around Speech Recognition. Until today everything has been working fine and in a timely manner, e.g. I would start my speech recogniser, speak, and within 1 or 2 seconds max the application…
Hector
  • 4,016
  • 21
  • 112
  • 211
19
votes
2 answers

Custom commands for Google Now

I am trying to make Google Now accept custom commands and send an Intent to my app when a particular query is made. I did this successfully using Tasker and Autovoice, but I want to do the same without using these apps. I found this link to the…
Harry Sharma
  • 2,190
  • 2
  • 15
  • 41
16
votes
2 answers

Integrate Google Voice Recognition in Android app

I want to introduce a new feature into my app: permanent voice recognition. First of all I followed these posts: Voice recognition Speech recognition in Android Offline Speech Recognition In Android (JellyBean) and more others, plus other posts…
14
votes
1 answer

RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS in Oreo

In most Android devices, the RecognitionService will be supplied by Google's native 'Now/Assistant' application. Up until Android Oreo, I was able to query the languages supported by the Google Recognizer with the following simple code: final Intent…
13
votes
4 answers

Muting the Google voice recognition beep sound

I have a test app that uses Google voice in a continuous manner and it plays the beep sound every time Google recognition service is called. I am trying to get rid of the beep sound. I have read threads of muting the music stream but that would not…
11
votes
2 answers

Error ERROR_RECOGNIZER_BUSY with offline speech recognition

I have made research on google offline speech recognition. but it works fine in google nexus 5(OS:-4.4) but same build if I implement in Samsung galaxy s5(OS:-5.0) it is not recognizing and it is showing this error: 8- ERROR_RECOGNIZER_BUSY. Below…
9
votes
2 answers

What audio file types does Google Cloud Speech API recognize?

I'm trying to use Google's Cloud Speech API. There's documentation and code examples here: https://cloud.google.com/speech/docs/basics https://cloud.google.com/speech/docs/rest-tutorial I can get the sample code to run just fine if I point it to an…
8
votes
0 answers

Google voice Actions: When the Activity.isVoiceInteraction is true?

Context: I'm trying to integrate the google voice actions in my app. I have seen and understood (or at least that what I think) the google codelabs-io2015 example and in this example if you don't modify the code everything works as expected. The…
5
votes
0 answers

How to get Google Speech Recognition Engine in an Android device

I have an Epson Moverio device, which is based on Android, but doesn't come with a speech recognition engine by default. I have successfully installed the Voice Search app and with that, I was able to use google voice recognition in the app I am…
4
votes
1 answer

sendOrderedBroadcast setPackage requirement in Oreo

Why would the following Ordered Broadcast fail in Android Oreo, unless I specifically set the package name? final Intent vrIntent = new Intent(RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS); // Setting the package it will work. Omitting, it will…
brandall
  • 6,094
  • 4
  • 49
  • 103
4
votes
0 answers

Custom Google Now commands

How can I intercept Google Now voice commands? I want that for example my app say Google Now "If the query contains xy send me an intent". How can I do that? I found this (https://developer.android.com/guide/components/intents-common.html#Now) but…
qwertz
  • 41
  • 1
3
votes
1 answer

Which library contains `com.google.android.voicesearch.DetailsReceiver` nowadays?

I finally migrated an old project of mine from Eclipse/ADT to Android Studio (2021.3.1.17). In the course of this migration, I fixed numerous issues stemming from outdated and deprecated methods and keywords that used to work perfectly on Android…
WebViewer
  • 761
  • 7
  • 21
3
votes
1 answer

Google Assistant voice search integration doesn't work with multiple words

In my Android project we recently added Voice Search following the documentation. It works fine, however only when searching one word. It doesn't seem to be an intended behaviour since in Google's examples they search for "trips to Maui". We've…
maya_t
  • 31
  • 2
3
votes
1 answer

Voice Search is not working from ok google

I have integrated voice search from ok google using below. AndroidManifest Entry :
SimpleCoder
  • 1,665
  • 1
  • 21
  • 34
3
votes
1 answer

Android searchable configuration voice search language

I am implementing voice search in my activity using searchable configuration as defined here. However setting android:voiceLanguage="tr" doesn't seem to work if the locale of the device is different. The search application dialog opens in device's…
rahimli
  • 1,373
  • 11
  • 25
1
2 3