active questions tagged sapi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T00:13:13Z http://stackoverflow.com/feeds/tag/sapi http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1772781/question-on-speech-recognition-classes-in-net 2 Question on Speech Recognition classes in .NET Alex 2009-11-20T19:39:43Z 2009-11-29T17:50:40Z <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/1738804/convert-audiowav-file-to-text-using-sapi 0 Convert Audio(Wav file) to Text using SAPI? Umaid 2009-11-15T20:58:04Z 2009-11-25T21:42:49Z <p>Hi I am using SAPI </p> <p>My task is to convert an Audio file not from Direct Speech from Human into text.</p> <p>e.g If I have "Hello there" store in wav file to it will transcribe it into text and show "Hello there" string on screen.</p> <p>Any help in this regard will be highly appreciated. I am felt in tough deadlines. Any language code in preferred but priority is c#.</p> http://stackoverflow.com/questions/1604108/connecting-to-naturally-speaking-through-sapi-4-interface-possible 0 Connecting to Naturally Speaking through SAPI 4 interface, possible? Memb 2009-10-21T22:53:21Z 2009-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/613313/c-and-sapi-i-have-speech-recognition-but-its-picking-up-words-im-not-interested 0 C# 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? dubayou 2009-03-05T01:48:53Z 2009-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/1763107/installing-english-language-package-on-windows-vista-german-edition 0 Installing English language package on Windows Vista German Edition [closed] Jigar Shah 2009-11-19T12:56:41Z 2009-11-19T12:59:16Z <p>Hi, </p> <p>I have a German edition of Windows Vista Home. I would like to add English Language Speech Recognition support. Is this possible?</p> http://stackoverflow.com/questions/1737147/how-to-use-speech-sdk-5-1 0 how to use Speech SDK 5.1 fluteofliar 2009-11-15T10:06:28Z 2009-11-15T18:34:46Z <p>hi frnds, i recently downloaded Microsoft Speech SDk 5.1 and i want to learn that how to use it. Please suggest me some websites and links where i can find tutorials on using it from basic using C# or C++.</p> <p>thanx</p> <p>with regards :)</p> http://stackoverflow.com/questions/1639845/c-sapi-in-a-web-service 0 C# SAPI in a web service Peter Morris 2009-10-28T20:16:12Z 2009-11-08T13:33:36Z <pre><code>var speechEngine = new SpVoiceClass(); SetVoice(speechEngine, job.Voice); var fileMode = SpeechStreamFileMode.SSFMCreateForWrite; var fileStream = new SpFileStream(); try { fileStream.Open(filePath, fileMode, false); speechEngine.AudioOutputStream = fileStream; speechEngine.Speak(job.Script, SpeechVoiceSpeakFlags.SVSFPurgeBeforeSpeak | SpeechVoiceSpeakFlags.SVSFDefault); //TODO: Change to XML //Wait for 15 minutes only speechEngine.WaitUntilDone((uint)new TimeSpan(0, 15, 0).TotalMilliseconds); } finally { fileStream.Close(); } </code></pre> <p>This exact code works in a WinForm app, but when I run it inside a webservice I get the following</p> <pre><code>System.Runtime.InteropServices.COMException was unhandled Message="Exception from HRESULT: 0x80045003" Source="Interop.SpeechLib" ErrorCode=-2147201021 </code></pre> <p>Does anyone have any ideas what might be causing this error? The error code means</p> <pre><code>SPERR_UNSUPPORTED_FORMAT </code></pre> <p>For completeness here is the SetVoice method</p> <pre><code>void SetVoice(SpVoiceClass speechEngine, string voiceName) { var voices = speechEngine.GetVoices(null, null); for (int index = 0; index &lt; voices.Count; index++) { var currentToken = (SpObjectToken)voices.Item(index); if (currentToken.GetDescription(0) == voiceName) { speechEngine.SetVoice((ISpObjectToken)currentToken); return; } } throw new Exception("Voice not found: " + voiceName); } </code></pre> <p>I have given full access to USERS on the folder C:\Temp where the file is to be written. Any help would be appreciated!</p> http://stackoverflow.com/questions/1094836/voice-recognition-in-c 6 Voice Recognition in C++ GuyNoir 2009-07-07T20:59:11Z 2009-10-28T21:48:35Z <p>I'm looking for a way to implement trainable voice recognition in C++. </p> <p>I've found the SAPI 5.3 SDK which looks promising, but the only tutorials that I can find are for TTS which is the opposite of what I want. </p> <p>Can anyone recommend a good tutorial that covers everything I would need to get SAPI up and running? </p> <p>Either that or is there a second API I could use as opposed to SAPI? The only requirement is that is has to be distributable in a way that it could be installed on other windows computers.</p> <p>Thanks.</p> http://stackoverflow.com/questions/676143/how-to-detect-when-sapi-tts-engine-is-busy 0 How to detect when SAPI TTS engine is busy Matthew 2009-03-24T04:17:06Z 2009-10-23T15:41:39Z <p>The SAPI engine can only render TTS from one application at a time (I have run a test with two instances of the Windows SDK TTSApplication sample to verify this). I am writing an application in which I need to detect whether the TTS engine is currently speaking (i.e. under control of a separate application, not mine).</p> <p>Does anyone know please how can I programmatically (in C++) detect the SAPI TTS engine busy/ready state? I have tried using ISpVoice::GetStatus() but that only seems to work for any TTS activity in my own application.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1608691/sapi-access-from-wcf-app 0 SAPI access from WCF app Attilah 2009-10-22T17:19:10Z 2009-10-22T17:32:25Z <p>is it possible to access SAPI from a WCF app ?</p> http://stackoverflow.com/questions/1460891/how-to-access-sapi-4-voices-from-net-framework-3-5 0 How to access SAPI 4 voices from .net framework 3.5 Codigo Espagueti 2009-09-22T15:44:10Z 2009-10-19T20:57:27Z <p>I’m trying to use a SAPI 4 engine (L&amp;H TTS 3000) from .net 3.5 using System.Speech.Synthesis in windows XP. </p> <p>The problem is than I can only get SAPI 5.1 engines when I call GetInstalledVoices.</p> <p>I’m using SAPI 4 because I need a Spanish TTS engine and L&amp;H TTS 3000 is the only one free that I have found.</p> http://stackoverflow.com/questions/1159278/microphone-plug-in-event-mic-attach-event-vista 1 Microphone plug in event/ Mic attach event Vista mots_g 2009-07-21T13:41:56Z 2009-10-09T21:37:03Z <p>I want to be notified when a microphone jack is plugged in. What is the event fired by the OS(particularly Vista) The audio panel shows no recording device active if no mic plugged in(vista). This never happened in XP. </p> <p>Also if my microphone had a "advance control" for eg Bass Boost, Mic Boost(AGC) etc, how can I get the mixer control for the same to control it.</p> <p>I'm using MFC for development. Thanks</p> http://stackoverflow.com/questions/1221455/mapping-ispmmsysaudiosetlineid-and-mixerlineid 1 Mapping ISpMMSysAudio::SetLineId and mixerLineId mots_g 2009-08-03T09:42:29Z 2009-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)&amp;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( &amp;MixerLine, 0, sizeof(MIXERLINE) ); MixerLine.cbStruct = sizeof(MIXERLINE); MixerLine.dwComponentType = MIXERLINE_COMPONENTTYPE_DST_WAVEIN; mmResult = mixerGetLineInfo( (HMIXEROBJ)dwMixerHandle, &amp;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 = &amp;mxc; mmResult = ::mixerGetLineControls(reinterpret_cast&lt;HMIXEROBJ&gt;(uMixrId), &amp;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&lt;HMIXEROBJ&gt;(uMixrId), &amp;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&lt;HMIXEROBJ&gt;(uMixrId), &amp;mxcd, MIXER_OBJECTF_HMIXER | MIXER_GETCONTROLDETAILSF_VALUE) != MMSYSERR_NOERROR) { delete []pmxcdSelectValue; mixerClose( (HMIXER)dwMixerHandle ); return -1; } } for (int i = 0; i &lt; mxc.cMultipleItems; i++) { if(/*(pmxcdSelectText[i].dwParam2 == MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE) &amp;&amp; */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/1326174/how-to-get-the-correction-commands-while-doing-free-dictation-with-sapi-5-3 1 How to get the correction commands while doing free dictation with sapi 5.3? unknown (yahoo) 2009-08-25T05:11:11Z 2009-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/299799/acoustic-training-using-sapi-5-3-speech-api 2 Acoustic training using SAPI 5.3 Speech API markab 2008-11-18T19:12:20Z 2009-10-05T23:26:38Z <p>Using Microsoft's SAPI 5.3 Speech API on Vista, how do you programatically do acoustic model training of a RecoProfile? More concretely, if you have a text file, and an audio file of a user speaking that text, what sequence of SAPI calls would you make to train the user's profile using that text and audio?</p> http://stackoverflow.com/questions/1521080/how-to-convert-text-to-wave-using-sapi-with-multithreading 2 How to convert Text to Wave using SAPI with multithreading? Vadakkumpadath 2009-10-05T16:32:34Z 2009-10-05T16:42:39Z <p>I am trying to convert text to wave file using following function. It works fine if called from main UI thread. But it fails when calling from another thread. How to call it from a multi-threaded function?</p> <pre><code>void Pan_Channel::TextToPlaybackFile( CString Text, CString FileName ) { // Result variable HRESULT Result = S_OK; // Voice Object CComPtr&lt;ISpVoice&gt; cpVoice; // Create a SAPI Voice Result = cpVoice.CoCreateInstance( CLSID_SpVoice ); // Audio format CSpStreamFormat cAudioFmt; // Set the audio format if( SUCCEEDED( Result ) ) { Result = cAudioFmt.AssignFormat( SPSF_8kHz16BitMono ); } // File Stream CComPtr&lt;ISpStream&gt; cpStream; // Call SPBindToFile, a SAPI helper method, to bind the audio stream to the file if( SUCCEEDED( Result ) ) { Result = SPBindToFile( FileName, SPFM_CREATE_ALWAYS, &amp;cpStream, &amp;cAudioFmt.FormatId(), cAudioFmt.WaveFormatExPtr() ); } // set the output to cpStream so that the output audio data will be stored in cpStream if( SUCCEEDED( Result ) ) { Result = cpVoice-&gt;SetOutput( cpStream, TRUE ); } // Speak the text syncronously if( SUCCEEDED( Result ) ) { Result = cpVoice-&gt;Speak( Text.AllocSysString(), SPF_DEFAULT, NULL ); } // close the stream if( SUCCEEDED( Result ) ) { Result = cpStream-&gt;Close(); } // Release stream cpStream.Release(); // Release voice object cpVoice.Release(); } </code></pre> http://stackoverflow.com/questions/457002/how-to-use-text-to-speech-using-actionscript-or-air 0 How to use text-to-speech using ActionScript or Air? bhbagadiya 2009-01-19T09:24:48Z 2009-10-01T15:22:44Z <p>Hi folks,</p> <p>I want to use SAPI Text-To-Speech engine from my ActionScript or Air application. is this possible ? what are the other alternatives ?</p> http://stackoverflow.com/questions/1281930/how-to-use-wndproc-from-a-c-dll 0 How to use WndProc from a C++ dll? Priyank Bolia 2009-08-15T13:43:36Z 2009-09-20T23:54:31Z <p>I want to handle some SAPI messages from a DLL, which is some sort of plugin. How to handle messages/events inside a VC++ dll. The SAPI event handling is shown in the example at: <a href="http://msdn.microsoft.com/en-us/library/ms720165%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms720165%28VS.85%29.aspx</a></p> http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3 1 How to add words to an already loaded grammar using System.Speech and SAPI 5.3 Kim Major 2008-11-29T16:32:04Z 2009-09-17T22:29:27Z <p>Given the following code,</p> <pre><code>Choices choices = new Choices(); choices.Add(new GrammarBuilder(new SemanticResultValue("product", "&lt;product/&gt;"))); GrammarBuilder builder = new GrammarBuilder(); builder.Append(new SemanticResultKey("options", choices.ToGrammarBuilder())); Grammar grammar = new Grammar(builder) { Name = Constants.GrammarNameLanguage}; grammar.Priority = priority; _recognition.LoadGrammar(grammar); </code></pre> <p>How can I add additional words to the loaded grammar? I know this can be achieved both in native code and using the SpeechLib interop, but I prefer to use the managed library.</p> <p><strong>Update:</strong> What I want to achieve, is not having to load an entire grammar repeatedly because of individual changes. For small grammars I got good results by calling</p> <pre><code>_recognition.RequestRecognizerUpdate() </code></pre> <p>and then doing the unload of the old grammar and loading of a rebuilt grammar in the event:</p> <pre><code>void Recognition_RecognizerUpdateReached(object sender, RecognizerUpdateReachedEventArgs e) </code></pre> <p>For large grammars this becomes too expensive.</p> http://stackoverflow.com/questions/1399011/loading-multiple-grammar-files-in-sapi-5-1 0 Loading multiple grammar files in SAPI 5.1 Tharini 2009-09-09T11:07:14Z 2009-09-16T05:29:09Z <p>I'm using an XML grammar file to develop a Command and Control application. Since there are around 4000 entries in the grammar I can't have it all in one file (it gives an error when I try to load it). I have written multiple XML grammar files, but when I try to load more than one file it replaces the previously loaded file. that is the program only recognizes the phrases in the second grammar file. Can anyone tell me how to load multiple grammars in a single speech recognition application?</p> http://stackoverflow.com/questions/925270/sapi-selectvoice-throwing-argumentexception 0 SAPI SelectVoice(...) throwing ArgumentException yo.ian.g 2009-05-29T10:00:53Z 2009-09-15T00:59:58Z <p>hey y'all, so I've got the user selecting from a list of "valid voices" for their speech synthesis. I'm pulling the list using GetInstalledVoices() and that results in around 5 or 6 voices including Microsoft Mike. However, should I select any voice besides Microsoft Anna I get an ArgumentExpection saying "Cannot set voice. No matching voice is installed or the voice was disabled." Why are these other "installed voices" not valid? Is there a way to prune the list better? I am checking against the voices' Enabled flag, all come back true.</p> <p>Thanks!</p> http://stackoverflow.com/questions/546428/how-do-i-load-a-grammar-xml-file-that-uses-sapi-5-3-tags 0 How do I load a Grammar xml file that uses SAPI 5.3 tags? jtek 2009-02-13T15:46:59Z 2009-08-05T07:27:49Z <p>My question is how can I load a grammar file that uses the tags they list in the MSDN docs? I want to use the format tags that are documented in MSDN under the heading Grammar Format Tags (SAPI 5.3). </p> <p><a href="http://msdn.microsoft.com/en-us/library/ms723634" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms723634</a>(VS.85).aspx</p> <p>There it lists tags like DEFINE, LIST, OPT etc. However whenever I try to use those tags in the grammar.xml file I get an error saying that that tag is not supported.</p> <p>If use a grammar file that only uses the tags one-of, item, etc. That are listed here in the MSDN; the grammar file loads.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms870140.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms870140.aspx</a> </p> <p>I know it is probably something simple but I cant seem to figure it out... </p> <p>Grammar file...that works</p> <pre><code> &lt;grammar xmlns="http://www.w3.org/2001/06/grammar" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/06/grammar http://www.w3.org/TR/speech-grammar/grammar.xsd" xml:lang="en-US" version="1.0" root="command"&gt; &lt;rule id="command" scope="public"&gt; &lt;one-of&gt; &lt;item&gt;nail&lt;/item&gt; &lt;item&gt;hammer&lt;/item&gt; &lt;item&gt;saw&lt;/item&gt; &lt;/one-of&gt; &lt;/rule&gt; &lt;/grammar&gt; </code></pre> <p>Code listing-------------------</p> <pre><code> public Form1() { InitializeComponent(); // set up the recognizer _speechRecognizer = new SpeechRecognizer(); _speechRecognizer.Enabled = false; _speechRecognizer.SpeechRecognized += new EventHandler&lt;SpeechRecognizedEventArgs&gt;(_speechRecognizer_SpeechRecognized); // set up the command and control grammar Grammar commandGrammar = new Grammar(@"grammar.xml"); commandGrammar.Name = "main command grammar"; commandGrammar.Enabled = true; // activate the command grammer _speechRecognizer.LoadGrammar(commandGrammar); _speechRecognizer.Enabled = true; } </code></pre> http://stackoverflow.com/questions/538329/acapela-voice-not-detected-in-c -8 Acapela voice not detected in C# Priyank Bolia 2009-02-11T19:19:33Z 2009-06-26T02:05:42Z <p>Acapela voice not detected in C#? Does any one knows how to use those SAPI voices in C#?</p> http://stackoverflow.com/questions/92742/unintentional-pitch-change-using-ms-sapi-tts 1 unintentional pitch change using MS SAPI TTS Dan 2008-09-18T13:55:56Z 2009-06-21T02:23:40Z <p>Has anyone else experienced (and possibly solved) unintentional pitch changes using MS SAPI TTS voices? </p> <p>I'm using the SpVoice automation interface with SAPI 5.1.</p> <p>Right now, my application (VB6 app) can get into a state where the TTS (Microsoft Anna) starts to sound like a chipmunk (proper rate, but high pitch) and even a reboot of Vista does not correct the issue. </p> <p>I'm passing in XML to the Voice.Speak() function. I've tried sending &lt; pitch absmiddle="0" /> before all other XML and it still does not correct the pitch issue. When I try the TTS voice preview in the Speech control panel, the voice has a normal pitch.</p> <p>The issue has occurred for me in XP in the past, however a reboot seemed to correct it.</p> http://stackoverflow.com/questions/755974/where-to-get-sapi 0 where to get SAPI ? Attilah 2009-04-16T12:48:35Z 2009-06-21T02:19:18Z <p>Hello, Folks !</p> <p>i want to create an application that is speech-enabled but whenever i get to MS website to download SAPI, i get an error.</p> <p>I want to know where I can get SAPI.</p> <p>and I also would like to know if a SAPI 5.3 application can work on Windows 2000, Windows XP and Windows Vista (if coded with C++/MFC).</p> <p>also, what is the best way to use SAPI ? with C# .NET or C++/MFC ?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1021490/delphi-and-sapi 1 Delphi and SAPI Attilah 2009-06-20T11:57:12Z 2009-06-20T12:44:33Z <p>does anyone have a resource from where I can learn to use SAPI from Delphi ?</p> <p>how to use Speech Recognition from Delphi Applications ?</p> <p>thanks.</p> http://stackoverflow.com/questions/963503/how-to-save-text-to-speech-as-a-wav-with-microsoft-sapi 1 How to save text-to-speech as a wav with Microsoft SAPI? Aaron 2009-06-08T05:17:46Z 2009-06-08T14:41:13Z <p>Hi,</p> <p>I think what I am about to want might be easy for you,so I decided to ask it to you,</p> <p>Fist I need to turn a text into speech and then save it as wav file.</p> <p>Could you help me ?</p> <p>Thanks.</p> http://stackoverflow.com/questions/795017/microsoft-speech-recognizer-6-1 1 Microsoft Speech Recognizer 6.1 shanxt3r 2009-04-27T19:50:38Z 2009-04-27T19:50:38Z <p>We have a Speech application written in C# which uses Microsoft Speech Recognizer 5.1. We are planning to use Recognizer 6.1 for better accuracy. I have few questions around this migration. </p> <ol> <li>Can I move my existing 5.1 profile to 6.1 without going through the training again? </li> <li>We see that the number of files generated by 6.1 are either 2 or 4. Is this completely variable? Will there be a case where the number of files is more than 4?</li> <li>Will the files get updated when the sapisrvr.exe is running? </li> </ol> <p>Thanks in advance,</p> http://stackoverflow.com/questions/147798/is-there-a-sapi-module-for-php-5-for-supporting-the-thttpd-web-server 0 Is there a SAPI module for PHP 5 for supporting the thttpd web server? ksuralta 2008-09-29T07:20:21Z 2009-03-30T09:05:47Z <p>Hi,</p> <p>Is there a SAPI module for PHP 5 for supporting the thttpd web server? Oddly, the one included on PHP 5.2.6 source is for PHP 4.x.</p> <p>Thanks, Kenneth</p> http://stackoverflow.com/questions/490042/microsoft-speech-api-5-1-5-3 0 Microsoft speech API 5.1, 5.3 ? Melursus 2009-01-29T00:26:31Z 2009-03-19T12:44:50Z <p>Hi,</p> <p>I'm a little confuse between the different SAPI version available.</p> <p>First of all, I only find the SDK to develop with the 5.1 version, is there any SDK for the 5.3 version available, if not, why ?</p> <p>Witch version can I use if I'm developing with the 3.5 version of the .Net framework.</p> <p>Is there any good tutorial because the only one I found are pretty old (they use 2003 version of visual studio) : <a href="http://msdn.microsoft.com/en-us/library/ms986944.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms986944.aspx</a></p> <p>Is there any way I can use the speech API directly in Asp.Net web site in speech-to-text mode ?</p> <p>Thx!</p>