How to add words to an already loaded grammar using System.Speech and SAPI 5.3 - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T12:33:23Zhttp://stackoverflow.com/feeds/question/327678http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/651246#6512461Answer by Conor OG for How to add words to an already loaded grammar using System.Speech and SAPI 5.3Conor OG2009-03-16T16:53:55Z2009-03-16T16:53:55Z<p>It sounds like you need to use some indirection, via the a grammar rule reference. This can be done with the GrammarBuilder.AppendRuleReference method. It might be easier to test out your grammars first with some SRGS grammar files.</p>
<p>The principle is that you load a main large grammar which has some references in it, to smaller user specific word lists grammars, which you would dynamically load.</p>
<p>See <a href="http://www.w3.org/TR/speech-grammar/#S2.2" rel="nofollow">http://www.w3.org/TR/speech-grammar/#S2.2</a> for the srgs format, and <a href="http://msdn.microsoft.com/en-us/library/system.speech.recognition.grammarbuilder.appendrulereference.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.speech.recognition.grammarbuilder.appendrulereference.aspx</a> for the programmatic version.</p>
http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/652591#6525911Answer by Conor OG for How to add words to an already loaded grammar using System.Speech and SAPI 5.3Conor OG2009-03-16T23:51:26Z2009-03-16T23:51:26Z<p>An alternative, if you have very large grammars, would be to use the dictation grammar option. There is a standard dictation grammar, but you could also specify your own.
See <a href="http://msdn.microsoft.com/en-us/library/system.speech.recognition.dictationgrammar.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.speech.recognition.dictationgrammar.aspx</a>, and it's constructor.</p>
<p>You wouldn't update this. It contains all possible words.</p>
http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/1211818#12118180Answer by catalist4u for How to add words to an already loaded grammar using System.Speech and SAPI 5.3catalist4u2009-07-31T10:30:35Z2009-07-31T10:30:35Z<p>Hi Kim can you send me your above complete code for loading grammar at umaid_rulz@yahoo.com</p>
<p>Actually I am grabbing grammar file from external xml but getting an exception for HRESULT error : 0x80045048</p>
<p>Although my xml rules are according to SAPI documentation.</p>
http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/1248623#12486230Answer by catalist4u for How to add words to an already loaded grammar using System.Speech and SAPI 5.3catalist4u2009-08-08T11:33:42Z2009-08-08T11:33:42Z<p>Hi Kim can you send me above code source because I am unable to add my words and run the code after some modification dynamically.</p>
<p>I want to add words dynamically at runtime to SAPI voice database and also want to add some own training files. Any assistance will be highly appreciated</p>
http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/1441655#14416551Answer by Eric Brown for How to add words to an already loaded grammar using System.Speech and SAPI 5.3Eric Brown2009-09-17T22:29:27Z2009-09-17T22:29:27Z<p>In native SAPI, I'd use ISpGrammarBuilder2::AddTextSubset().</p>