Questions tagged [voice-recognition]

Voice Recognition means identification of the person talking and is frequently misapplied to mean "Speech Recognition" - identification of what is being said.

1464 questions
12
votes
3 answers

Does RecognitionListener.onError() automatically SpeechRecognizer.cancel()?

For various reasons, I need to use the raw SpeechRecognizer API instead of the easier RecognizerIntent (RECOGNIZE_SPEECH) activity. That means, among other things, that I need to handle RecognitionListener.onError() myself. In response to some of…
srf
  • 2,410
  • 4
  • 28
  • 41
12
votes
3 answers

Twilio, Tropo - who else for SMS and Voice apps?

I've found Twilio and Tropo so far as services to aid SMS and Voice apps. Are there others? I am interested mostly in real-time speech recognition (i.e. the user can speak things and the system can respond based on that). Also, if anyone knows what…
georgiosd
  • 3,038
  • 3
  • 39
  • 51
12
votes
1 answer

Compare two voice in android

I am working on one voice messaging application, I need to compare two voice like, Register with app by record your voice Sent voice message to another user by record voice, but first need to compare this voice to recorded voice in…
Hardik Joshi
  • 9,477
  • 12
  • 61
  • 113
11
votes
1 answer

Recognize Speech To Text Swift

Is it possible to recognize speech and then convert it into text with custom keyboard. Like by default message app in iPhone. ScreenShot 1. Default recognize speech in iPhone keyboard. ScreenShot 2. Speech to text Screen Shot Any help would be…
11
votes
2 answers

Audio Input on Android Emulator

How can one get audio input on the Android Emulator? I'm using the 2.2 SDK, and emulating on Ubuntu 10.10. I have the hw.audioinput property set to yes on my emulator, but I get the message "Recognizer not present" when I run the Voice Recognition…
Tyler Collier
  • 11,489
  • 9
  • 73
  • 80
11
votes
2 answers

How to implement button in ViewPager?

I have a ViewPager and I need to use a button there. Button has to recognize the voice, and show it in a TextView. I implement the same layout for VoiceRecognition and for ViewPager. The question is: how to activate button to run VoiceRecognition…
JohnPix
  • 1,595
  • 21
  • 44
11
votes
2 answers

How to mix Grammar (Rules) & Dictation (Free speech) with SpeechRecognizer in C#

I really like Microsofts latest speech recognition (and SpeechSynthesis) offerings. http://msdn.microsoft.com/en-us/library/ms554855.aspx http://estellasays.blogspot.com/2009/04/speech-recognition-in-cnet.html However I feel like I'm somewhat…
Lee Englestone
  • 4,545
  • 13
  • 51
  • 85
10
votes
1 answer

HotwordDetector using VoiceInteractionService in android

I am creating the voice recognition service like "Ok Google" with custom command. For this I have used the VoiceInteractionService and I refered the code from here. Also, I am getting the STATE_HARDWARE_UNAVAILABLE error in onAvailabilityChanged.…
Nisar
  • 828
  • 1
  • 10
  • 28
10
votes
3 answers

How to mute the beep sound for SpeechRecognizer?

This has been asked before, but no one seemed to have a solution: Muting SpeechRecognizer's beep sound Nevertheless, I still would like to know if anyone knows how to mute the beeping sound for SpeechRecognizer? I create speechRecognizer object:…
portfoliobuilder
  • 7,556
  • 14
  • 76
  • 136
10
votes
1 answer

Can I have a speech recognition on Firefox?

I currently have for my web application a speech recognition functionality achieved with a Speech Recognition library named annyang. This works only in chrome because x-webkit-speech(which is used for speech recognition) works only for Chrome. My…
user2271933
  • 491
  • 2
  • 10
  • 25
10
votes
2 answers

how voice recognition in android works?

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…
SunnyShah
  • 28,934
  • 30
  • 90
  • 137
9
votes
1 answer

Android SpeechRecognizer: stopListening() vs. cancel()

From name alone, I can derive that stopListening() is the opposite of startListening(). I can also understand that destroy() is the opposite of createSpeechRecognizer(). But cancel()... is the opposite of what? All I could find in the documentation…
srf
  • 2,410
  • 4
  • 28
  • 41
9
votes
3 answers

DTMF tone in RecognitionListener.onReadyForSpeech() mistaken for speech

The Google Voice Search comes with a significant delay from the moment you call it via startActivityForResult() until its dialog box is displayed, ready to take your speech. This requires the user to always look at the screen, waiting for the dialog…
srf
  • 2,410
  • 4
  • 28
  • 41
9
votes
5 answers

How do I use voice search and VoiceRecognition on Android?

I want to use VoiceRecognition in my application, but this application needs to install voice search. I don't want the user to have to install another other application then return to my application to run it. I want voice search to be installed…
mobileDeveloper
  • 894
  • 2
  • 14
  • 35
9
votes
1 answer

Voice Activity Detection from mic input on iOS

I'm developing an iOS app that does voice based AI; i.e. it's meant to take voice input from the microphone, turn it into text, send it to an AI agent, then output the returned text through the speaker. I've got everything working, though using a…
1 2
3
97 98