Voice Recognition means identification of the person talking and is frequently misapplied to mean "Speech Recognition" - identification of what is being said.
Questions tagged [voice-recognition]
1464 questions
57
votes
2 answers
How To: Voice Commands into an android application
There are many tutorials online for adding voice recognition to an android app. They are often confusing and the publishers of the coding are never available for questions. I need a basic overview of how to add voice recognition to my app (as an…

Sam Bevins
- 1,939
- 4
- 21
- 26
46
votes
4 answers
What are language codes in Chrome's implementation of the HTML5 speech recognition API?
Chrome implemented the HTML5 speech recognition API. Many languages are supported. I wanna know which languages are supported and each language's corresponding code which is used in the HTML element's lang attribute.
For instance:
Polish…

weilou
- 4,419
- 10
- 43
- 56
39
votes
3 answers
Saving audio input of Android Stock speech recognition engine
I am trying to save in a file the audio data listened by speech recognition service of android.
Actually I implement RecognitionListener as explained here:
Speech to Text on Android
save the data into a buffer as illustrated here:
Capturing audio…

mmmx
- 521
- 4
- 7
37
votes
3 answers
Voice recognition on android with recorded sound clip?
I've used the voice recognition feature on Android and I love it. It's one of my customers' most praised features. However, the format is somewhat restrictive. You have to call the recognizer intent, have it send the recording for transcription…

CodeFusionMobile
- 14,812
- 25
- 102
- 140
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
30
votes
3 answers
How Google Voice Search works? Is there an API for that?
I'm not sure if this is the right site for this question, but I was wondering how the voice activated search on Google's homepage works. Does it use Flash, some kind of plugin built into Google Chrome, or how does it use the microphone? This could…

bbosak
- 5,353
- 7
- 42
- 60
28
votes
5 answers
How to handle ERROR_RECOGNIZER_BUSY
In my voice recognition based app, I sometimes receive ERROR_RECOGNIZER_BUSY. Intuitively, this calls for... retries, right?
The problem is that this error is very undocumented, so obviously I have questions that perhaps someone more experienced in…

srf
- 2,410
- 4
- 28
- 41
23
votes
4 answers
Python Speaker Recognition
I have an audio file, a recorded telephone conversation of 2 people, that I need to separate the voices of 2 speakers automatically. I am new to speech recognition and I looked at wave module of python but failed to find any fruitful…

PJC
- 231
- 1
- 2
- 3
22
votes
4 answers
Is there an API for Google's speech recognition technology?
I want to try creating a jQuery slideshow using simple voice commands like "next" or "previous". Is there a way to use Google's voice recognition? I know about Chrome's x-webkit-speech, but I have to click a button to use it.
I tried MIT's WAMI, but…

Leo Jiang
- 24,497
- 49
- 154
- 284
20
votes
1 answer
Voice Recognition as a background service
Is it possible to implement an activity as a service? My activity is a voice recognition activity. I want to have the activity running in the background of the app constantly checking for voice and when the user says a command it will recognize it…

IZI_Shadow_IZI
- 1,921
- 4
- 30
- 59
20
votes
1 answer
minimum cut off for the microphone's volume with Windows voice recognition
I am using Window's voice recognition API, and it keeps detecting very low background noise as the word "if" repetitively. I have been trying to find a way to put a minimum volume requirement for it to start accepting input, but all its members are…

Drake
- 3,851
- 8
- 39
- 48
20
votes
6 answers
Voice/Speech to text
I need an API or library (preferably free) that will convert voice/speech through a microphone, into text (string).
Additionally, I will need an API or library that can do text-to-speech.
I'd like to use C# and .NET, but other languages will…

charles_har
- 275
- 1
- 4
- 6
20
votes
4 answers
Android speech Recognition App Without Pop Up
I'm currently looking into getting a career with JAVA and have decided to start by building an app.
I have this code right here that I am using to trigger Speech Recognition.
public class MainActivity extends Activity implements…

Liam Shalon
- 422
- 2
- 5
- 19
18
votes
3 answers
Java Voice Biometric
I want to develop an application based on Voice Biometric Recognition.
Specifically, I want to develop an application which will record a voice from the telephone, and identify the speaker. If the same person calls again it will recognize the voice.…

subodh
- 6,136
- 12
- 51
- 73
18
votes
3 answers
convert sound to list of phonemes in python
How do I convert any sound signal to a list phonemes?
I.e the actual methodology and/or code to go from a digital signal to a list of phonemes that the sound recording is made from.
eg:
lPhonemes = audio_to_phonemes(aSignal)
where for…

Roman
- 8,826
- 10
- 63
- 103