active questions tagged speech-recognition - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T02:06:39Zhttp://stackoverflow.com/feeds/tag/speech-recognitionhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/36054/anyone-have-experience-with-sphinx-speech-recognition3Anyone have experience with Sphinx speech recognition?Eric Z Beard2008-08-30T15:46:09Z2009-11-26T19:46:23Z
<p>Has anyone used the <a href="http://cmusphinx.sourceforge.net/html/cmusphinx.php" rel="nofollow">Sphinx</a> speech recognition stack to build IVR applications? I am looking for open source alternatives to the expensive and somewhat limiting choices from MSFT and others. I have not been able to find a comprehensive package that ties open source speech/voip applications together.</p>
http://stackoverflow.com/questions/1408874/speech-recognition-programming2Speech Recognition & ProgrammingSean Ochoa2009-09-11T03:46:28Z2009-11-26T10:19:48Z
<p>Has anyone had success with Dragon Naturally Speaking voice recognition software when it comes to programming?</p>
<p>I am wondering because I think it would be a lot faster than me typing by hand, and easier on my carpol-tunnel. </p>
<p>I program from day to day in visual basic 6 ide, visual studio 2008 ide + team explorer, writing emails, and chatting over Windows Live IM. </p>
<p>I have a need for a command-based interface where I can bind voice commands to keystrokes, switch between spelling / saying words / saying words without spaces, etc.</p>
<p>Any comments are much appreciated.</p>
http://stackoverflow.com/questions/1604108/connecting-to-naturally-speaking-through-sapi-4-interface-possible0Connecting to Naturally Speaking through SAPI 4 interface, possible? Memb2009-10-21T22:53:21Z2009-11-25T04:10:51Z
<p>I read somewhere that you can interface to Naturally Speaking through the SAPI 4 interface it exports? Is this true and is there any documentation? Thanks</p>
http://stackoverflow.com/questions/1783358/voice-recognition-for-handeld-devices0voice recognition for handeld devicesefrat2009-11-23T14:14:22Z2009-11-23T14:17:50Z
<p>Hi, I need to develop an app on handheld device pocketpc or palm, that uses voice recognition. what is the best way to go , which library is the easiest , best etc..
thx</p>
http://stackoverflow.com/questions/1772781/question-on-speech-recognition-classes-in-net2Question on Speech Recognition classes in .NETAlex2009-11-20T19:39:43Z2009-11-20T23:00:10Z
<p>Hi guys,</p>
<p>Is it possible to have an application built using the .NET speech recognition classes and pass in a WAV file for it to go through and create a text representation of it. For example, this what I'm trying to do:</p>
<p>We have a QA department at my office and they have to listen to hundreds of calls a day which is quite impossible, and there's not enough people listening to everything to keep up. What I want to do is have the audio file uploaded to our server and have the server parse it and create a transcript of it. It doesn't matter if it's not perfect, but just a base which would be easier to skim through a couple of dozen lines of text than listen to a 2 hour recording.</p>
<p>Based on a saved transcript I can implement full-text search in the database and also run checks against the transcript if someone is saying something that's a misrepresentation.</p>
<p>So, is it possible to create an application using the .NET speech recognition classes and just pass the WAV file to it and it spit out a rough transcript?</p>
<p>I've dug around MSDN on the Speech classes briefly while thinking up the idea, so I don't have that much knowledge if it's possible to be done.</p>
<p>If possible, I would appreciate any examples in C#. Topic <a href="http://stackoverflow.com/questions/1055347/speech-recognition-from-audio-file-instead-of-microphone">1055347</a> is similar to the question I'm having, and was provided links, the most specific of which is in C++. I'm not a C++ developer, nor have I ever went to school for programming, I'm all self though C#, so I would like to stay in the language that I know.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/613313/c-and-sapi-i-have-speech-recognition-but-its-picking-up-words-im-not-interested0C# and SAPI, I have speech recognition but its picking up words im not interested in. How can I limit, not just over weight, the gramer dict?dubayou2009-03-05T01:48:53Z2009-11-20T08:23:51Z
<p>Whew, big title, but yea that sums up the question.</p>
<p>Im working in C# with the Microsoft SAPI, using their speech Recognition in a program im working on.</p>
<p>what i have it doing is.
grammar = objRecoContext.CreateGrammar(0);</p>
<pre><code> menuRule = grammar.Rules.Add("typewrite", SpeechRuleAttributes.SRATopLevel | SpeechRuleAttributes.SRADynamic, 1);
object PropValue = "";
menuRule.InitialState.AddWordTransition(null, "will", " ", SpeechGrammarWordType.SGLexical, "will", 1, ref PropValue, 1.0F);
menuRule.InitialState.AddWordTransition(null, "New", " ", SpeechGrammarWordType.SGLexical, "New", 1, ref PropValue, 1.0F);
menuRule.InitialState.AddWordTransition(null, "Open", " ", SpeechGrammarWordType.SGLexical, "Open", 2, ref PropValue, 1.0F);
menuRule.InitialState.AddWordTransition(null, "Close", " ", SpeechGrammarWordType.SGLexical, "Close", 3, ref PropValue, 1.0F);
</code></pre>
<p>for custom words.
but this will pick up more than I want. how can i fix this.</p>
<p>what im asking is, how can i make the m$ sapi only care about words I want it to. not every word in the default dict.</p>
http://stackoverflow.com/questions/1740644/text-extraction-of-speech-from-video-and-audio-files0Text extraction of speech from video and audio filesAnkur2009-11-16T07:33:51Z2009-11-19T17:05:05Z
<p>What are the best libraries for doing this. And is the quality good enouch to rely on. It will not be possible to train the system with the speakers voice or use a dictionary of terms to improve results.</p>
http://stackoverflow.com/questions/1719780/speechsynthesizer-how-do-i-play-save-the-wav-file0SpeechSynthesizer - How do I play/save the wav file?unknown (yahoo)2009-11-12T03:56:22Z2009-11-13T03:39:54Z
<p>I have the following code snippet in an ASP.NET app (non Silverlight)</p>
<pre><code> string sText = "Test text";
SpeechSynthesizer ss = new SpeechSynthesizer();
MemoryStream ms = new MemoryStream();
ss.SetOutputToWaveStream(ms);
ss.Speak(sText);
//Need to send the ms Memory stream to the user for listening/downloadin
</code></pre>
<p>How do I:</p>
<ol>
<li><p>Play this file on the browser</p></li>
<li><p>Prompt for the user to download a wav file?</p></li>
</ol>
<p>Can anyone help with completing the code?</p>
<p><strong>EDIT: Any help is appreciated.</strong></p>
http://stackoverflow.com/questions/1700651/how-to-use-speech-recognition-with-on-video-file3How to use speech recognition with/on video file?Yusuke2009-11-09T12:17:04Z2009-11-10T23:18:22Z
<p>How can I code speech recognition engine (Using Microsoft Speech SDK) to "listen" a video file and save the detection into a file?</p>
http://stackoverflow.com/questions/1682902/streaming-input-to-system-speech-recognition-speechrecognitionengine0Streaming input to System.Speech.Recognition.SpeechRecognitionEnginespurserh2009-11-05T19:16:38Z2009-11-05T21:45:05Z
<p>Hello, </p>
<p>I am trying to do "streaming" speech recognition in C# from a TCP socket. The problem I am having is that SpeechRecognitionEngine.SetInputToAudioStream() seems to require a Stream of a defined length which can seek. Right now the only way I can think to make this work is to repeatedly run the recognizer on a MemoryStream as more input comes in. </p>
<p>Here's some code to illustrate:</p>
<pre><code> SpeechRecognitionEngine appRecognizer = new SpeechRecognitionEngine();
System.Speech.AudioFormat.SpeechAudioFormatInfo formatInfo = new System.Speech.AudioFormat.SpeechAudioFormatInfo(8000, System.Speech.AudioFormat.AudioBitsPerSample.Sixteen, System.Speech.AudioFormat.AudioChannel.Mono);
NetworkStream stream = new NetworkStream(socket,true);
appRecognizer.SetInputToAudioStream(stream, formatInfo);
// At the line above a "NotSupportedException" complaining that "This stream does not support seek operations."
</code></pre>
<p>Does anyone know how to get around this? It must support streaming input of some sort, since it works fine with the microphone using SetInputToDefaultAudioDevice().</p>
<p>Thanks, Sean</p>
http://stackoverflow.com/questions/766223/c-speech-recognition-vista-problem0C# Speech Recognition VISTA ProblemDanielRosca2009-04-19T22:12:41Z2009-11-05T18:24:49Z
<p>I'm getting the following error when I try to run the project:</p>
<pre><code>A timeout occurred starting the SAPI Server.
System.InvalidOperationException was unhandled
Message="A timeout occurred starting the SAPI Server."
Source="System.Speech"
StackTrace:
at System.Speech.Internal.SapiInterop.SapiRecognizer..ctor(RecognizerType type)
at System.Speech.Recognition.SpeechRecognizer..ctor()
at testdan.Form1..ctor() in C:\Users\Dany\Documents\Visual Studio 2008\Projects\testdan\testdan\Form1.cs:line 17
at testdan.Program.Main() in C:\Users\Dany\Documents\Visual Studio 2008\Projects\testdan\testdan\Program.cs:line 18
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
</code></pre>
<p>Form1 Code:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Speech.Recognition;
using System.Threading;
namespace testdan
{
public partial class Form1 : Form
{
SpeechRecognizer rec = new SpeechRecognizer();
public Form1()
{
InitializeComponent();
rec.SpeechRecognized += new EventHandler<SpeechRecognizedEventArgs>(rec_SpeechRecognized);
}
void rec_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
{
lblLetter.Text = e.Result.Text;
MessageBox.Show(e.Result.Text);
}
void Form1_Load(object sender, EventArgs e)
{
var c = new Choices();
c.Add("close");
c.Add("stop");
c.Add("pause");
var gb = new GrammarBuilder(c);
var g = new Grammar(gb);
rec.LoadGrammar(g);
rec.Enabled = true;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1636894/use-nsspeechrecognizer-or-alternative-with-audio-file-instead-of-microphone-input0Use NSSpeechRecognizer or alternative with audio file instead of microphone input?ck2009-10-28T12:17:23Z2009-11-03T11:17:05Z
<p>Is it possible to use the NSSpeechRecognizer with an pre-recorded audio file instead of direct microphone input?</p>
<p>Or is there any other speech-to-text framework for Objective-C/Cocoa available?</p>
<p><strong>Added</strong>:</p>
<p>Rather than using voice at the machine that is running the application external devices (e.g. iPhone) could be used for sending just an recorded audio stream to that desktop application. The desktop Cocoa app then would process and do whatever it's supposed to do using the assigned commands.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/454664/speech-to-text-conversion-in-linux2Speech to text conversion in LinuxVinay2009-01-18T04:35:08Z2009-11-03T05:12:56Z
<p>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 inputs on this?</p>
<p>EDIT: The application that I am planning to write should be able convert every word that we speak to text, not just the Yes/No.</p>
http://stackoverflow.com/questions/837582/mac-osx-speech-to-text-api-how-to1mac osx speech to text api How-to?Roy Chan2009-05-07T23:39:08Z2009-11-03T05:07:21Z
<p>Hi Gurus,</p>
<p>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 don't mind saving the audio into .wav first and read it as oppose to do the transform on the fly)</p>
<p>I have read the official docs online, it is a bit confusing. And I couldn't find any good example around that topic.</p>
<p>And, should I do it in cocoa/carbon/java or objective-c?</p>
<p>Can someone please shed some light</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1648296/what-is-a-good-resource-for-learning-the-system-speech-apis2What is a good resource for learning the System.Speech APIs?Chris Smith2009-10-30T06:21:22Z2009-10-30T18:12:32Z
<p>In C# 3.5 System.Speech.dll was added for doing text-to-speech and speech-to-text conversions. Searching on the internet I've found a few blog posts about getting started, but are there any good resources for learning more about this technology? (Other than the obligatory <a href="http://msdn.microsoft.com/en-us/library/system.speech.recognition.aspx" rel="nofollow">MSDN documentation</a>.)</p>
http://stackoverflow.com/questions/1648670/feasibility-of-beating-the-turing-test-with-modern-software0Feasibility of beating the Turing Test with modern software?Karl2009-10-30T08:49:57Z2009-10-30T13:05:57Z
<p>I ask this academically, I want to ask aloud a very important question and have the community try to answer it. Can we build a system that generates a scene to play out along a live anonymous group video chatroom that can read the text typed at it and respond with a chatbot?</p>
<p>Live Internet video is often blurry and has low resolution. One cannot make out many details in the scene of the distant party. Scenes can be rendered with modern software tools that look very real when not moving. Making them move realistically is a large piece of simulation software. </p>
<p>Faces can be rendered at 24 frames per second by a cluster of 24 systems capable of 1 frame per second. The video would then have a 1 second lag from the point where the decision was made as to which facial expression to generate. These facial expressions and their generation is a key problem. The skin realism requirement is a solved problem by the graphics community.</p>
<p>Facial expressions have been categorized by several researchers. They also can be rendered, this has been shown in modern computer graphics literature. We can do them if we can know which ones are appropriate for a given situation.</p>
<p>Chatbots have been in use for decades. There exist now quite 'smart' chatting programs that will read what it is asked and reply in a sensible way. They have always done this with text, but text-reader software can speak out in a human-ish voice, and speech recognition software is getting better every year.</p>
<p>What I propose is the fact that it should be quite rudimentary to connect all of these disparate parts of software development and create some truly amazing turing-test beater.</p>
<p>This program could enter a virtual space and display a realistic environment as if on a webcam like the other participants. It can watch their facial expressions and it can listen to their speech and it can read their text. It could then create a response and either type or say it back to the group. The choosing of what to respond with is a difficult problem that not even most humans have mastered. We can get it close with a lot of work.</p>
<p>The Turing Test is about proving that a communicator is a human, but 'proof' only in the sense that it is good enough to fool the human judges. If the human judges are simply everyone, they will not likely apply a strict formal procedure. Guessing or falling for a trick is good enough.</p>
<p>Do you think we can do this?</p>
<p>Is this plan flawed? Are there moral implications to tricking the average viewer in this way? Can we make millions of dollars by generating personal intelligent assistants?</p>
http://stackoverflow.com/questions/274255/vista-speech-recognition-in-delphi5Vista Speech Recognition in Delphieagle2008-11-08T02:35:46Z2009-10-26T04:48:14Z
<p>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 Firefox 3.0 has the same issue and after they contacted Microsoft about the problem, they <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=395484#c15" rel="nofollow">told them</a> that they need to implement the <a href="http://msdn.microsoft.com/en-us/library/ms629032(VS.85).aspx" rel="nofollow">Text Services Framework</a> for their application.</p>
<p>I am wondering if there is any way to implement this in Delphi so that I can dictate into a TMemo or a TRichEdit. Searching Google for a solution didn't return any relevant results. Where would I start in finding a solution?</p>
<p><strong>Edit:</strong> I found out that there is a way to enable speech recognition in all programs, even those that don't support it, simply by going to the options of Windows Speech Recognition and selecting <strong>Enable dictation everywhere</strong>. However when you use this to dictate into an editbox that doesn't use the Text Services Framework, it always pops up the <strong>Alternates Panel</strong> which displays the prompt <strong>Say the number next to the item you want, followed by OK</strong>. While this may work for short sentences, it does not have many of the useful features such as correcting or deleting a word. So I am still trying to figure out how to enable speech recognition without relying on the <strong>Enable dictation everywhere</strong> option.</p>
http://stackoverflow.com/questions/1622746/java-voice-recognition-using-wav-format1java voice recognition using .wav format [closed]nuwan2009-10-26T01:39:32Z2009-10-26T01:41:47Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/1606052/voice-recognition-in-j2me">Voice recognition in J2ME</a> </p>
</blockquote>
<p>I'm developing a java (j2me) program which requires voice recognition.Is there any java libraries that can recognize voice, which stored in the hard disk in .wav format. It didn't need to be so much sophisticated, if it can identify simple voice commands and numbers that would be enough. Is anyone know where can I find such a library. </p>
<p>please help me guys. I'm so desperate here.</p>
<p>Thanks in advance,
Nuwan</p>
http://stackoverflow.com/questions/1611401/is-there-software-that-outputs-speech-to-text-at-the-phonological-level6Is there software that outputs speech-to-text at the Phonological level?James2009-10-23T04:41:30Z2009-10-24T03:35:28Z
<p>Is there any software out there capable of taking audio files and outputting phonological (IPA) text?</p>
<p>I understand much of the software out there takes it straight to a language, but is there one that is 'teachable'?</p>
http://stackoverflow.com/questions/1606052/voice-recognition-in-j2me0Voice recognition in J2MEnuwan2009-10-22T09:29:29Z2009-10-22T09:54:52Z
<p>I'm developing a mobile application using j2me. There I need to have a speech recognition function, so that application should be able to process and act upon the commands given by the user. What I wanted to know is</p>
<ol>
<li><p>Is this technically possible (I'm a novice to j2me programming)?</p></li>
<li><p>If it is possible, where can I find a j2me library for speech recognition? </p></li>
</ol>
<p>Thanks in advance,</p>
<p>Nuwan</p>
http://stackoverflow.com/questions/1102910/why-isnt-speech-recognition-advancing6Why isn't speech recognition advancing?Yuval A2009-07-09T09:54:21Z2009-10-19T06:37:48Z
<p>What's so difficult about the subject that algorithm designers are having a hard time tackling it?</p>
<p>Is it really that complex?</p>
<p>I'm having a hard time grasping why this topic is so problematic. Can anyone give me an example as to why this is the case?</p>
http://stackoverflow.com/questions/227140/c-speech-recognition-is-this-what-the-user-said7C# Speech Recognition - Is this what the user said?RichieACC2008-10-22T19:04:15Z2009-10-12T17:39:12Z
<p>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 reads it (or an approximation of it). I also need to be able to switch quickly between languages, without changing the language of the operating system.</p>
<p>The users will be using the system for very short periods. The application needs to work without the requirement of first training the recognition engine to the users' voices.</p>
<p>It would also be fantastic if this could work on Windows XP or lesser versions of Windows Vista.</p>
<p>Optionally, the system needs to be able to read information on the screen back to the user, in the user's selected language. I can work around this specification using pre-recorded voice-overs, but the preferred method would be to use a text-to-speech engine.</p>
<p>Can anyone recommend something for me?</p>
http://stackoverflow.com/questions/1551930/what-is-the-best-speech-recognition-library-for-java-micro-edition1What is the best speech recognition library for Java Micro Edition?nicky2009-10-11T22:17:17Z2009-10-11T22:27:39Z
<p>What is the best speech recognition library for jme?</p>
http://stackoverflow.com/questions/1221455/mapping-ispmmsysaudiosetlineid-and-mixerlineid1 Mapping ISpMMSysAudio::SetLineId and mixerLineIdmots_g2009-08-03T09:42:29Z2009-10-09T20:48:37Z
<p>I want to set the lineId for SAPI by calling ISpMMSysAudio::SetLineId.
I find out the line which I wish to set from the mixer handle I have.
However the line id I get from the mixer is not what SAPI assumes. It
results in SAPI listening to the wrong input line for mic thus getting
no input.</p>
<p>I'm getting the mux control for "DST_WAVEIN" for the mixer handle and
then checking which source line for microphone is active. I wish to
set the active line as "input" to the SAPI.</p>
<p>I am getting Line Id from mixer by enumerating MUX control as follows:</p>
<p>int GetSelectedWaveInLine(UINT uMixrId)
{
int iRetVal = -1;
MMRESULT mmResult;
HMIXER dwMixerHandle;</p>
<pre><code>mmResult = mixerOpen( (LPHMIXER)&dwMixerHandle, uMixrId, 0L, 0L, 0L);
if (MMSYSERR_NOERROR != mmResult)
{
LOG_ERROR("FAILURE: Could not Open mixer, with id: %d. mmResult=%d",uMixrId, mmResult );
return -1;
}
MIXERLINE MixerLine;
memset( &MixerLine, 0, sizeof(MIXERLINE) );
MixerLine.cbStruct = sizeof(MIXERLINE);
MixerLine.dwComponentType = MIXERLINE_COMPONENTTYPE_DST_WAVEIN;
mmResult = mixerGetLineInfo( (HMIXEROBJ)dwMixerHandle, &MixerLine, MIXER_GETLINEINFOF_COMPONENTTYPE );
if (MMSYSERR_NOERROR != mmResult)
{
mixerClose( (HMIXER)dwMixerHandle );
LOG_ERROR("FAILURE: Could not get WaveIn Destionation Line for the requested source while enumerating. mmResult=%d", mmResult );
return -1;
}
// get the MUX
MIXERCONTROL mxc;
MIXERLINECONTROLS mxlc;
mxlc.cbStruct = sizeof(MIXERLINECONTROLS);
mxlc.dwLineID = MixerLine.dwLineID;
mxlc.dwControlType = MIXERCONTROL_CONTROLTYPE_MUX;
mxlc.cControls = 1;
mxlc.cbmxctrl = sizeof(MIXERCONTROL);
mxlc.pamxctrl = &mxc;
mmResult = ::mixerGetLineControls(reinterpret_cast<HMIXEROBJ>(uMixrId),
&mxlc,
MIXER_OBJECTF_HMIXER |
MIXER_GETLINECONTROLSF_ONEBYTYPE);
if (MMSYSERR_NOERROR != mmResult)
{
LOG_INFO0("Could not get Mux control for waveIn line. Get selected id");
mixerClose( (HMIXER)dwMixerHandle );
return -1;
}
LOG_INFO("Got mux controls. Total lines associated with mux = %d", mxc.cMultipleItems);
// from the MUX get as many lines for "MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE" {from dwParam1/dwParam2 }
// then get the boolean control for the line and return the one currently selected
MIXERCONTROLDETAILS_LISTTEXT *pmxcdSelectText = new MIXERCONTROLDETAILS_LISTTEXT[mxc.cMultipleItems];
if (pmxcdSelectText != NULL)
{
MIXERCONTROLDETAILS mxcd;
mxcd.cbStruct = sizeof(MIXERCONTROLDETAILS);
mxcd.dwControlID = mxc.dwControlID;
mxcd.cChannels = 1;
mxcd.cMultipleItems = mxc.cMultipleItems;
mxcd.cbDetails = sizeof(MIXERCONTROLDETAILS_LISTTEXT);
mxcd.paDetails = pmxcdSelectText;
if (::mixerGetControlDetails(reinterpret_cast<HMIXEROBJ>(uMixrId),
&mxcd,
MIXER_OBJECTF_HMIXER |
MIXER_GETCONTROLDETAILSF_LISTTEXT)
!= MMSYSERR_NOERROR)
{
delete []pmxcdSelectText;
mixerClose( (HMIXER)dwMixerHandle );
return -1;
}
}
//get all the boolean values for the mux
MIXERCONTROLDETAILS_BOOLEAN *pmxcdSelectValue = new MIXERCONTROLDETAILS_BOOLEAN[mxc.cMultipleItems];
if (pmxcdSelectValue != NULL)
{
MIXERCONTROLDETAILS mxcd;
mxcd.cbStruct = sizeof(MIXERCONTROLDETAILS);
mxcd.dwControlID = mxc.dwControlID;
mxcd.cChannels = 1;
mxcd.cMultipleItems = mxc.cMultipleItems;
mxcd.cbDetails = sizeof(MIXERCONTROLDETAILS_BOOLEAN);
mxcd.paDetails = pmxcdSelectValue;
if (::mixerGetControlDetails(reinterpret_cast<HMIXEROBJ>(uMixrId),
&mxcd,
MIXER_OBJECTF_HMIXER |
MIXER_GETCONTROLDETAILSF_VALUE)
!= MMSYSERR_NOERROR)
{
delete []pmxcdSelectValue;
mixerClose( (HMIXER)dwMixerHandle );
return -1;
}
}
for (int i = 0; i < mxc.cMultipleItems; i++)
{
if(/*(pmxcdSelectText[i].dwParam2 == MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE) && */pmxcdSelectValue[i].fValue)
{
LOG_INFO("Got SELECTED microphone source line. Line index = %d, Line name = %s",i,pmxcdSelectText[i].szName);
iRetVal = i;
break;
}
}
//LOG_INFO("Got mux controls. Total lines associated with mux = %d", mxc.cMultipleItems);
delete []pmxcdSelectText;
delete []pmxcdSelectValue;
mixerClose( (HMIXER)dwMixerHandle );
return iRetVal;
</code></pre>
<p>}</p>
<p>The index returned by Mixer does not match the index used by ISpMMSysAudio. And my speech engine picks different line ID.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1542178/custom-vocabularies-for-speech-recognition-in-windows1Custom vocabularies for Speech Recognition in Windowspeter.murray.rust2009-10-09T06:49:03Z2009-10-09T18:27:51Z
<p>Using Windows7 speech recognition I wish to create specialised vocabularies for recognising a domain-specific natural language in parts of my application. Thus, for example, a specific text entry box could be linked to its own vocabulary and limited to a small subset of language, e.g.</p>
<pre><code>throw the axe at the troll
</code></pre>
<p>where <code>"troll"</code> is in the vocabulary but <code>"trawl"</code> is not. The application should be able to learn, so:</p>
<pre><code>throw the axe at the arggly
</code></pre>
<p>should allow <code>"arggly"</code> to be spelt out and recognised and added to the dictionary.</p>
http://stackoverflow.com/questions/254930/question-speechsynthesizer-setoutputtoaudiostream-audio-format-problem1Question SpeechSynthesizer.SetOutputToAudioStream audio format problemChris Kugler2008-10-31T20:55:28Z2009-10-08T22:36:09Z
<p>Hi, I'm currently working on an application which requires transmission of speech encoded to a specific audio format.</p>
<pre><code>System.Speech.AudioFormat.SpeechAudioFormatInfo synthFormat =
new System.Speech.AudioFormat.SpeechAudioFormatInfo(System.Speech.AudioFormat.EncodingFormat.Pcm,
8000, 16, 1, 16000, 2, null);
</code></pre>
<p>This states that the audio is in PCM format, 8000 samples per second, 16 bits per sample, mono, 16000 average bytes per second, block alignment of 2.</p>
<p>When I attempt to execute the following code there is nothing written to my MemoryStream instance; however when I change from 8000 samples per second up to 11025 the audio data is written successfully.</p>
<pre><code>SpeechSynthesizer synthesizer = new SpeechSynthesizer();
waveStream = new MemoryStream();
PromptBuilder pbuilder = new PromptBuilder();
PromptStyle pStyle = new PromptStyle();
pStyle.Emphasis = PromptEmphasis.None;
pStyle.Rate = PromptRate.Fast;
pStyle.Volume = PromptVolume.ExtraLoud;
pbuilder.StartStyle(pStyle);
pbuilder.StartParagraph();
pbuilder.StartVoice(VoiceGender.Male, VoiceAge.Teen, 2);
pbuilder.StartSentence();
pbuilder.AppendText("This is some text.");
pbuilder.EndSentence();
pbuilder.EndVoice();
pbuilder.EndParagraph();
pbuilder.EndStyle();
synthesizer.SetOutputToAudioStream(waveStream, synthFormat);
synthesizer.Speak(pbuilder);
synthesizer.SetOutputToNull();
</code></pre>
<p>There are no exceptions or errors recorded when using a sample rate of 8000 and I couldn't find anything useful in the documentation regarding SetOutputToAudioStream and why it succeeds at 11025 samples per second and not 8000. I have a workaround involving a wav file that I generated and converted to the correct sample rate using some sound editing tools, but I would like to generate the audio from within the application if I can.</p>
<p>One particular point of interest was that the SpeechRecognitionEngine accepts that audio format and successfully recognized the speech in my synthesized wave file...</p>
<p>Update: Recently discovered that this audio format succeeds for certain installed voices, but fails for others. It fails specifically for LH Michael and LH Michelle, and failure varies for certain voice settings defined in the PromptBuilder.</p>
http://stackoverflow.com/questions/1528972/how-to-infer-debug-information-from-alternates-panel-output-in-wsr0How to infer debug information from Alternates Panel output in WSRi_like_monkeys2009-10-07T00:59:27Z2009-10-08T22:32:05Z
<p>I have this Windows Speech Recognition (WSRMacro) script which compounds multiple words that are spoken into a single word:</p>
<pre><code>"Happy children"
-> "Happychildren"
</code></pre>
<p>However, a bug in the script appears under certain circumstances and I do not know how to deduce what the problem is. Although the above example works, the following does not:</p>
<pre><code>"Happy children bake a cake"
</code></pre>
<p>Instead of compounding the words as above, the Alternates Panel appears with the following prompt:</p>
<pre><code>-> Alternates Panel (Say the number next to the item you want followed by OK):
(1) Replace that withhappychildrenbakeacake
(2) replace that withhappychildrenbakeacake
(3) replace that with no space happy no space
children no space bake no space a no space cake
</code></pre>
<p>Can I infer any particular bug in the script below from the Alternates Panel output above?</p>
<p>Or is there anything I can add to the script to get more useful feedback about the nature of the bug?</p>
<pre><code> <command priority="5">
<listenFor>compound that</listenFor>
<emulateRecognition>select that</emulateRecognition>
<sendKeys>{250 WAIT}{{CTRL}}c{250 WAIT}</sendKeys>
<script language="VBScript">
<![CDATA[
that = Application.clipboardData.GetData("text")
Set regEx = New RegExp
regEx.Pattern = "[^\s\w,;:]"
If regEx.Test(that) Then
Application.SetTextFeedback("Try again without any punctuation selected")
Else
regEx.Pattern = "(\s) *(\S)"
regEx.Global = True
that = regEx.Replace(" " & that, "$1no space $2")
On Error Resume Next
Application.EmulateRecognition("replace that with" & that)
If 0 <> Err.Number Then
Application.SetTextFeedback("Try again with only the digits selected")
End If
End If
]]>
</script>
</command>
</code></pre>
http://stackoverflow.com/questions/1326174/how-to-get-the-correction-commands-while-doing-free-dictation-with-sapi-5-31How to get the correction commands while doing free dictation with sapi 5.3?unknown (yahoo)2009-08-25T05:11:11Z2009-10-07T22:25:40Z
<p>I have an sample application that do basic dictation with sapi 5.3.<br />
It works well to input text with punctuation...<br />
What would I need to do to enable the correction functionality as in the tutorial (correct word, select ...)?<br />
Is there a specific grammar to load (which and how), some specific events to implement?</p>
http://stackoverflow.com/questions/1524781/need-help-with-windows-speech-recognition-script-to-compound-a-string0Need help with Windows Speech Recognition script to compound a stringi_like_monkeys2009-10-04T22:27:45Z2009-10-06T16:09:32Z
<p>The command below for Windows Speech Recognition forces the speech recognition engine to use literal text (""all seventy six people paid five dollars") instead of the default ("all 76 people paid $5").</p>
<p>I'm trying to adapt this command to remove the spaces between words so that I could program using speech by saying things like:</p>
<pre><code>"Security Manager"
-> "Security Manager"
"Compound That"
-> "SecurityManager"
</code></pre>
<p>The way I think this could work is by using a regex to remove the spaces between the selected text. So, in the following code:</p>
<pre><code> <command priority="5">
<listenFor>literal that</listenFor>
<emulateRecognition>select that</emulateRecognition>
<sendKeys>{250 WAIT}{{CTRL}}c{250 WAIT}</sendKeys>
<!-- Works by first inserting the word " literal " before each word
example "all 76 people paid $5"
is emulated as "literal all literal 76 literal people literal paid literal $5"
which produces the result "all seventy six people paid five dollars"
EmulateRecognition can fail if the text contains improper formatting or nonsense words
(which can easily happen if only part of a word in the document is included in the text selection).
When the failure can be handled by "On Error Resume Next", such as EmulateRecognition("literal s")
or EmulateRecognition("multiple spaces"), we restore the original text and show feedback message.
Unfortunately, some failures, such as EmulateRecognition("nonsens"), cause macros to immediately
halt. This is why "replace that with " is used. Either it succeeds, or it fails non-destructively
(before any text is deleted). Unfortunately, this can be confusing for the user because the macro
can fail without doing anything visible to the user (no changes to the text, and no SetTextFeedback.)
-->
<script language="VBScript">
<![CDATA[
that = Application.clipboardData.GetData("text")
Set regEx = New RegExp
regEx.Pattern = "[^\s\w,;:]"
If regEx.Test(that) Then
Application.SetTextFeedback("Try again without any punctuation selected")
Else
regEx.Pattern = "(\s) *(\S)"
regEx.Global = True
that = regEx.Replace(" " & that, "$1literal $2")
On Error Resume Next
Application.EmulateRecognition("replace that with" & that)
If 0 <> Err.Number Then
Application.SetTextFeedback("Try again with only the digits selected")
End If
End If
]]>
</script>
</command>
</code></pre>
<p>instead of writing this:</p>
<pre><code> regEx.Pattern = "(\s) *(\S)"
regEx.Global = True
that = regEx.Replace(" " & that, "$1literal $2")
</code></pre>
<p>I think it would need to use some other regex pattern that extracts whitespace between words and pushes the words together in the new output.</p>
<p>I'm not sure how to do that. Would appreciate if anyone has a suggestion.</p>
http://stackoverflow.com/questions/1059699/use-speech-recognition-from-c1Use speech recognition from C#Timwi2009-06-29T18:19:19Z2009-10-06T15:57:41Z
<p>I am trying to write a program that supports speech recognition via a custom (specialised) grammar. However, the SpeechRecognized event never fires, and the speech recognition applet acts as if the grammar didn't exist.</p>
<p>Here are my precise steps. Please tell me where I am going wrong.</p>
<ol>
<li>Open Control Panel, search for "speech", then click on "Start speech recognition".</li>
<li>Open Visual C#, create a new Windows Forms project</li>
<li>Copy and paste the code from <a href="http://stackoverflow.com/questions/227140/c-speech-recognition-is-this-what-the-user-said">the first answer on this Stack Overflow question</a> into the project.</li>
<li>Add the necessary reference to System.Speech.</li>
<li>Run the program, with the speech recognition applet still running.</li>
<li>Say "Start listening".</li>
<li>Say a number between 1 and 100.</li>
</ol>
<p>The label's text never changes from its default value ("label1"), so it seems that rec_SpeechRecognized() is never called, i.e. the SpeechRecognized event never fires. If I say a number that sounds somewhat similar to the name of an open window or a program in my start menu, it'll ask me if that is what I meant. It appears to be completely agnostic of the custom grammar I just defined.</p>
<p>I tried lots of examples I found on the web, which are all pretty much equivalent to the example in that answer I linked to, only with different grammar. I get the same result for all of them, so I assume I must be doing something else wrong.</p>
<p>What am I doing wrong?</p>