speech-recognition

What does "Value does not fall within expected range" mean in runtime error?

Hi, I'm writing a plugin (dll file) using /clr and trying to implement speech recognition using .NET. But when I run it, I got a runtime error saying "Value does not fall within expected range", what does the message mean? public ref class Dialog : public System::Windows::Forms::Form { public: SpeechRecognitionEngine^ sre...

Do I need to install Speech SDK to be able to do speech recognition, even when I'm using .NET Speech Recognition namespace?

I know that I need to install Speech SDK if I'm using SAPI for spech recognition. But what if I'm using .NET System.Speech.Recognition:SpeechRecognizer class? ...

Speech recognition (web) services?

I have a buffer of audio and I'd like to perform speech recognition/transcription on it. I have limited CPU and RAM locally so I want to perform recognition on a server. Are there any (web) services that allow me to do this? My searches so far have led nowhere... ...

Quickest and easiest way to implement speech to text conversion for a small speech subset.

Hi, I want to implement a system that receives speech through a microphone on my Mac OS x. I know arbitrary speech recognition is close to impossible without training the system so I'm willing to restrict it to 10 simple sentences. It must recognize with a high degree of accuracy which of these 10 sentences are being spoken, generate th...

Server side speech to text

Hi, I'm trying to install a speech recognition engine server side. (non commercial preferred since it's just for experimentation) The idea is to allow a user to say something from a website then whatever he/she says will show up on the screen (as text) I've read about many available softwares ranging from Microsoft Speech, Sphinx, Jul...

Speech recognition with Flash or Silverlight

I'm developing a web user interface to enter some information that is not very complex but needs to be loaded in real time. I think that the application could make use of speech recognition to facilitate the task. Te core of the interface is being built with Javascript and jQuery, but can easily include a flash or silverlight component...

Speech Recognition Server Does Not Stay Open

I am trying to create a simple program that loops for user speech input using com.apple.speech.recognitionserver. My code thus far is as follows: set user_response to "start" repeat while user_response is not equal to "Exit" tell application id "com.apple.speech.recognitionserver" set user_response to listen for {"Time", "Weather",...

Training speech recognition software

A little left field, but I'm trying to train a speech recognition program and the guidelines suggest that I attempt to speak clearly but naturally. I notice, however, that when one speaks naturally each word tends to drift into the next, resulting in a rather ambiguous boundary between the words. One the one hand, speaking in a more sti...

How to see Microsoft Speech Recognition language and if it's active using Python?

Hello, I'm using windows 7 english and I want to know how to see the microsoft speech language and to see if the speech recognition is active. How can I do it using python? Solved with: x=_winreg.ConnectRegistry(None,_winreg.HKEY_CURRENT_USER) try: y= _winreg.OpenKey(x, r"Software\Microsoft\Speech\Preferences") if _winreg.Que...

Is there a speech to text API or some "hack" by which I can use Google's speech to text facilities?

Hi I think Google's speech to text facilities (Google Voice automatic transcription of voicemail, automatic captioning of videos on YouTube etc) are quite impressive. I did look to see whether Google has made it available through an API and it seems they haven't (not that I blame them!). A cloud computing service providing speech to te...

How to fix this Speech Recognition wicked bug?

I have this code in my C# project: public void startRecognition(string pName) { presentationName = pName; if (WaveNative.waveInGetNumDevs() > 0) { string grammar = System.Environment.GetEnvironmentVariable("PUBLIC") + "\\SoundLog\\Presentations\\" + presentationName + "\\SpeechRecognition\\soundlog.cfg"; if...

SAPI Speech recognition delphi

I to need create a programmatic equivalent using delphi language... or could someone post a link on how to do grammars in peech recogniton using the delphi. Or any examples of XML grammar that has programmatic equivalent in Delphi. sorry for my english. **Programmatic Equivalent ** Ref: http://msdn.microsoft.com/en-us/library/ms72363...

Getting started with speech recognition programming questions

So, you've all probably seen Iron Man where Tony interacts with an AI system called Jarvis. Demo clip here (Sorry it's a commercial). I'm very familiar with C#, C++ and Visual Basic, but I am unsure what options I have available for me to program something like this. Ideally, I'd like to have it assist me while working on some projects ...

Is it possible to use WIndows Speech Recognition Engine in a word pronunciation game?

I use to create an application that uses the windows speech recognition engine or the SAPI. its like a game for pronunciation that it give you score when you pronounce it correctly. but when i started experiments with SAPI, it has poor recognition unless if you load a grammar on it (XML) its give best recognition result. but the proble...

Speech recognition webservice that scores the accuracy of one audio clips vs. another?

Does such a thing exist? Building a Rails based web application where users can upload an audio file of them speaking that then needs to be compared to another audio file for the purposes of determining how similar to voices are. Ideally I'd like to simply get a response that gives me a score of how similar they are in terms of percent...

How do you get speech dictated without adding it to a grammar list?

I'm new to Speech Recognition, and I'm working on a project that will receive a command from a recognizable list. For example, I would say "Play song". The computer would ask the song title, and I can say it. It will then compare my answer to my music library and find it. I know how to add recognizable grammar to the SpeechRecognizer ...

Is it possible to disable Speech Reference Card?

Microsoft Speech Recognition comes with a Speech Reference Card. It consists in some pre-determined words that are recognized. I want to know if it's possible to disable it. Is it? EDIT: I want to remove all pre-defined commands. This ones: http://windows.microsoft.com/en-us/windows-vista/Common-commands-in-Speech-Recognition EDIT2: I...

Microsoft Speech Recognition in web service

I'm trying to use the System.Speech.Recognition namespace for recognizing speech in a web service. Actually, the WS calls a dll that uses this namespace. The problem is that...I can't. First, I had a Access denied error. After changing the Identity of my application pool to LocalSystem (security break, I know), that disappeared. But a t...

C# Speech Recognition

I am making a Smart House Control System right now, and I have a little problem. I was thinking on using Cosmos for a base system, and adding the needed namespace libraries to it, but as the usual System.Speech.Recognition namespace depends too much on Windows Speech API, I have to forget about using it. So my question is, is there any ...

VBA speech recognition /audio input / voice command

Speech recognition may be too grand a term for this problem. I want my VBA program to wait for the user to say something like "next" or "continue" before it carries on processing. This is the equivalent of the traditional "Press any key to continue" loop. This should be fairly simple. All the examples I have found do complicated thing...