Speech recognition is the technology that is used to convert spoken words to text.

learn more… | top users | synonyms

26
votes
12answers
28k views

C# Speech Recognition - Is this what the user said?

I have need to write an application which uses a speech recognition engine -- either the built in vista one, or a third party one -- that can display a word or phrase, and recognise when the user ...
23
votes
16answers
2k views

Voice Recognition Software For Developers

Well the doc's finally said it, I need to take it easy on my wrist for a few months. Being that I'm a .NET Developer this could end my livelihood for a little while, something I'm not anxious to do. ...
21
votes
6answers
21k views

Is there a speech to text API by Google?

In Android, you can say something and it will search it for Google. Google can turn speech into text. How can I leverage this API?
21
votes
1answer
1k views

Can I write SQL using speech recognition?

I have wrist pain when I type and I would like to start writing SQL statements, stored procedure, and views using speech recognition.
15
votes
3answers
3k views

What is the difference between System.Speech.Recognition and Microsoft.Speech.Recognition?

There are two similar namespaces and assemblies for speech recognition in .NET. I’m trying to understand the differences and when it is appropriate to use one or the other. There is ...
14
votes
4answers
418 views

iOS / C: Algorithm to detect phonemes

I am searching for an algorithm to determine whether realtime audio input matches one of 144 given (and comfortably distinct) phoneme-pairs. Preferably the lowest level that does the job. I'm ...
13
votes
9answers
9k views

Does Chrome have buil-in speech recognition for <input type=“text” x-webkit-speech speech />?

I'm wondering how <input type="text" x-webkit-speech speech /> leveraging speech recognition technology as in this example: http://slides.html5rocks.com/#slide24 Is there a speech ...
13
votes
21answers
1k views

Why isn't speech recognition advancing?

What's so difficult about the subject that algorithm designers are having a hard time tackling it? Is it really that complex? I'm having a hard time grasping why this topic is so problematic. Can ...
12
votes
1answer
2k views

Google's voice search speech recognition service

Google has speech recognition services available for use from mobile phones (Android has it built in, iPhone users can use the Google application) - http://www.google.com/mobile/. We've found one ...
11
votes
3answers
750 views

How can i do speech recognition in C or Java or PHP?

Is there any well known established framework for C or Java or PHP to do speech recognition applications? Microphone audio input and it will recognize English words. Such as pseudo code: Speech s = ...
10
votes
1answer
155 views

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 ...
10
votes
1answer
5k views

x-webkit-speech help

I am trying to use the new x-webkit-speech function in a simple html/js extension in google chrome. I however have tried and tried looking at a bunch of examples and cannot get it to successfully call ...
9
votes
2answers
849 views

Building openears compatible language model

I am doing some development on speech to text and text to speech and I found the OpenEars API very useful. The principle of this cmu-slm based API is it uses a language model to map the speech ...
8
votes
4answers
2k views

Open source code for voice detection and discrimination

I have 15 audio tapes, one of which I believe contains an old recording of my grandmother and myself talking. A quick attempt to find the right place didn't turn it up. I don't want to listen to 20 ...
8
votes
6answers
9k views

Android: Speech Recognition without using google server

I want to develop an Speech recognizer in android, which should work in offline. As the android's built-in speech recognizer uses google server which needs internet, i want an alternative which works ...
8
votes
6answers
2k views

How to implement speech recognition and text-to-speech in C++?

I want to know about various techniques to do speech recognition and text to speech conversion. Also please let me know about any resources like links, tutorials ,ebooks etc. on it. Which is the most ...
8
votes
10answers
2k views

Need text to speech and speech recognition tools for Linux

I'm planning on writing a program for Linux that uses text to speech and speech recognition. What are the best tools/libraries for this? Should I use Windows instead to be able to use better tools? ...
7
votes
1answer
185 views

Continuous speech recognition while singing?

As part of my application I'm looking to add speech recognition, but not really in the traditional sense. I have a bunch of lyrics (divided into verses) that are sung by someone, and the idea is to ...
7
votes
2answers
336 views

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 ...
7
votes
2answers
325 views

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 ...
7
votes
3answers
503 views

How to convert human voice into digital format?

I am working on a project where biometric system is used to secure the system. We are planning to use human voice to secure the system. Idea is to allow the person to say some words or sentences and ...
7
votes
4answers
1k views

Audio analysis to detect human voice, gender, age and emotion — any prior open-source work done?

Is there prior open-source work done in the field of 'Audio analysis' to detect human-voice (say in spite of some background noise), determine speaker's gender, possibly determine no. of speakers, age ...
7
votes
1answer
682 views

Open source speech recognition engine

I'm looking for a free (FOSS) speech recognition engine that I can use with my PHP-based GPL software. Any suggestions what are some of the best quality ones out there?
7
votes
1answer
2k views

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 ...
7
votes
7answers
3k views

Speech Recognition & Programming

Has anyone had success with Dragon Naturally Speaking voice recognition software when it comes to programming? I am wondering because I think it would be a lot faster than me typing by hand, and ...
7
votes
4answers
11k views

iPhone App › Add voice recognition?

I'd like to build an app that uses voice recognition. I've seen big companies like Google etc implement this feature, but I'm curious about doing it on a start-up level. Anyone looked into this? Are ...
7
votes
5answers
4k views

Java voice recognition

Is there Anyone that has experience with any open source, or relatively cheap voice recognition API for java? I'm pretty much looking for something that will turn spoken words into text. From the ...
6
votes
3answers
989 views

Use x-webkit-speech with a textarea

I have a field in my webapp where users are entering a large amount of text. I would like to implement the x-webkit-speech element. it works in all the <input> boxes, but I cannot get it ...
6
votes
0answers
339 views

Android: Where is Speech Recognition temp audio file saved?

When I press and hold the search key on my Droid it starts the built in Android voice recognition. While it is listening, if I speak the words "Note to self" and then keep talking, when done I get an ...
6
votes
2answers
638 views

Creating ARPA language model file with 50,000 words

I want to create an ARPA language model file with nearly 50,000 words. I can't generate the language model by passing my text file to the CMU Language Tool. Is any other link available where I can get ...
6
votes
1answer
512 views

Disable built-in speech recognition commands?

I'm trying to build software that interprets various textual commands, all in a custom way. I use System.Speech.Recognition and it works surprisingly well, but I can't figure how to get around the ...
6
votes
2answers
243 views

Is there software that outputs speech-to-text at the Phonological level?

Is there any software out there capable of taking audio files and outputting phonological (IPA) text? I understand much of the software out there takes it straight to a language, but is there one ...
6
votes
1answer
2k views

speech recognition from audio file instead of microphone

How can I perform speech recognition on speech coming from an audio file (.mp3, wav) instead of the microphone ? I want to be able to do that from C#.NET and Delphi. thanks.
5
votes
1answer
195 views

Microsoft Speech Recognition Speed

I am working on a small practice app using Microsoft's speech recognizer. I cannot seem to get it to recognize single words fast enough for what I am doing. I would like to be able to speak normally ...
5
votes
2answers
500 views

Using SpeechRecognizer API directly - onResults() keeps returning null

I have been trying to follow the example in this post. Since I am not trying to implement this in a service but rather in a standard activity, I haven't experienced the problems described in the ...
5
votes
2answers
520 views

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 ...
5
votes
2answers
556 views

Improve Speech Recognition, C#

I use System.Speech library to able to recognize speech but it usually recognizes very different. SpeechRecognizer_rec = new SpeechRecognizer(); DictationGrammar grammar = new DictationGrammar(); ...
5
votes
1answer
1k views

Google speech to text API for languages other then English

Is there an API for speech to text for languages other then English? I know the API for English (http://developer.android.com/resources/articles/speech-input.html) but I want be able to recognize ...
5
votes
1answer
99 views

Difference between the various Microsoft Speech technologies

I am looking to write an application that will convert speech-to-text and vice versa for a warehouse application. The main use case will be that an operator will be wearing a headset in the warehouse ...
5
votes
1answer
410 views

Dragon NaturallySpeaking Programmers

Is there anyway to encorporate Dragon NaturallySpeaking into an event driven program? My boss would really like it if I used DNS to record user voice input without writing it to the screen and saving ...
5
votes
2answers
1k views

System.Speech.Recognition Choosing Recognition Profile

Does anyone know how to change recognition profiles from within a .NET application? I am writing a .NET application that does speech recognition using the capabilities found in the ...
5
votes
3answers
2k views

Speech Recognition

I need to develop an iPhone application which recognizes speech, and based on the result it performs further tasks. I know iPhone 3.0 doesn't support speech recognition and I need to implement speech ...
5
votes
4answers
4k views

mac osx speech to text api How-to?

I have a program that receives an audio (mono) stream of bits from tcp/ip. I am wondering if the speech(speech-recognition) api in mac osx would be able to do a speech-to-text transform for me. (I ...
5
votes
5answers
7k views

Speech to text conversion in Linux

I am planning to start an application which converts the speech to text in Linux. Are there any existing interfaces so that I can extend them? or Is there any such existing application in Linux? Any ...
5
votes
3answers
1k views

Vista Speech Recognition in Delphi

I would like to be able to dictate into my Delphi application using Microsoft Vista's speech recognition. However when attempting to dictate into a TMemo, it simply does not work. I noticed that ...
5
votes
3answers
2k views

Question SpeechSynthesizer.SetOutputToAudioStream audio format problem

I'm currently working on an application which requires transmission of speech encoded to a specific audio format. System.Speech.AudioFormat.SpeechAudioFormatInfo synthFormat = ...
5
votes
5answers
1k views

What's a good open source VoiceXML implementation?

I am trying to find out if it's possible to build a complete IVR application by cobbling together parts from open source projects. Is anyone using a non-commercial VoiceXML implementation to build ...
5
votes
3answers
2k views

How do I search content, within audio files/streams?

I have always wondered how many different search techniques existed, for searching text, for searching images and even for videos. However, I have never come across a solution that searched for ...
5
votes
5answers
730 views

How to get started with speech-to-text?

I'm really interested in speech-to-text algorithms, but I'm not sure where to start studying up on them. A bunch of searching around led me to this, but it's from 1996 and I'm fairly certain that ...
4
votes
5answers
169 views

Why is speech recognition difficult? [closed]

Why is speech recognition so difficult? What are the specific challenges involved? I've read through a question on speech recognition, which did partially answer some of my questions, but the answers ...

1 2 3 4 5 10