active questions tagged sapi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T00:13:13Zhttp://stackoverflow.com/feeds/tag/sapihttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1772781/question-on-speech-recognition-classes-in-net2Question on Speech Recognition classes in .NETAlex2009-11-20T19:39:43Z2009-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-sapi0Convert Audio(Wav file) to Text using SAPI?Umaid2009-11-15T20:58:04Z2009-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-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/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/1763107/installing-english-language-package-on-windows-vista-german-edition0Installing English language package on Windows Vista German Edition [closed]Jigar Shah2009-11-19T12:56:41Z2009-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-10how to use Speech SDK 5.1fluteofliar2009-11-15T10:06:28Z2009-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-service0C# SAPI in a web servicePeter Morris2009-10-28T20:16:12Z2009-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 < 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-c6Voice Recognition in C++GuyNoir2009-07-07T20:59:11Z2009-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-busy0How to detect when SAPI TTS engine is busyMatthew2009-03-24T04:17:06Z2009-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-app0SAPI access from WCF appAttilah2009-10-22T17:19:10Z2009-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-50How to access SAPI 4 voices from .net framework 3.5Codigo Espagueti2009-09-22T15:44:10Z2009-10-19T20:57:27Z
<p>I’m trying to use a SAPI 4 engine (L&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&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-vista1Microphone plug in event/ Mic attach event Vistamots_g2009-07-21T13:41:56Z2009-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-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/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/299799/acoustic-training-using-sapi-5-3-speech-api2Acoustic training using SAPI 5.3 Speech APImarkab2008-11-18T19:12:20Z2009-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-multithreading2How to convert Text to Wave using SAPI with multithreading?Vadakkumpadath2009-10-05T16:32:34Z2009-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<ISpVoice> 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<ISpStream> cpStream;
// Call SPBindToFile, a SAPI helper method, to bind the audio stream to the file
if( SUCCEEDED( Result ) )
{
Result = SPBindToFile( FileName, SPFM_CREATE_ALWAYS, &cpStream,
&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->SetOutput( cpStream, TRUE );
}
// Speak the text syncronously
if( SUCCEEDED( Result ) )
{
Result = cpVoice->Speak( Text.AllocSysString(), SPF_DEFAULT, NULL );
}
// close the stream
if( SUCCEEDED( Result ) )
{
Result = cpStream->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-air0How to use text-to-speech using ActionScript or Air?bhbagadiya2009-01-19T09:24:48Z2009-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-dll0How to use WndProc from a C++ dll?Priyank Bolia2009-08-15T13:43:36Z2009-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-31How to add words to an already loaded grammar using System.Speech and SAPI 5.3Kim Major2008-11-29T16:32:04Z2009-09-17T22:29:27Z
<p>Given the following code,</p>
<pre><code>Choices choices = new Choices();
choices.Add(new GrammarBuilder(new SemanticResultValue("product", "<product/>")));
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-10Loading multiple grammar files in SAPI 5.1Tharini2009-09-09T11:07:14Z2009-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-argumentexception0SAPI SelectVoice(...) throwing ArgumentExceptionyo.ian.g2009-05-29T10:00:53Z2009-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-tags0How do I load a Grammar xml file that uses SAPI 5.3 tags?jtek2009-02-13T15:46:59Z2009-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> <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">
<rule id="command" scope="public">
<one-of>
<item>nail</item>
<item>hammer</item>
<item>saw</item>
</one-of>
</rule>
</grammar>
</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<SpeechRecognizedEventArgs>(_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-8Acapela voice not detected in C#Priyank Bolia2009-02-11T19:19:33Z2009-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-tts1unintentional pitch change using MS SAPI TTSDan2008-09-18T13:55:56Z2009-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 < 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-sapi0where to get SAPI ?Attilah2009-04-16T12:48:35Z2009-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-sapi1Delphi and SAPIAttilah2009-06-20T11:57:12Z2009-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-sapi1How to save text-to-speech as a wav with Microsoft SAPI?Aaron2009-06-08T05:17:46Z2009-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-11Microsoft Speech Recognizer 6.1shanxt3r2009-04-27T19:50:38Z2009-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-server0Is there a SAPI module for PHP 5 for supporting the thttpd web server?ksuralta2008-09-29T07:20:21Z2009-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-30Microsoft speech API 5.1, 5.3 ?Melursus2009-01-29T00:26:31Z2009-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>