How to add words to an already loaded grammar using System.Speech and SAPI 5.3 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T04:47:37Z http://stackoverflow.com/feeds/question/327678 http://www.creativecommons.org/licenses/by-nc/2.5/rdf 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/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/651246#651246 1 Answer by Conor OG for How to add words to an already loaded grammar using System.Speech and SAPI 5.3 Conor OG 2009-03-16T16:53:55Z 2009-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#652591 1 Answer by Conor OG for How to add words to an already loaded grammar using System.Speech and SAPI 5.3 Conor OG 2009-03-16T23:51:26Z 2009-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#1211818 0 Answer by catalist4u for How to add words to an already loaded grammar using System.Speech and SAPI 5.3 catalist4u 2009-07-31T10:30:35Z 2009-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#1248623 0 Answer by catalist4u for How to add words to an already loaded grammar using System.Speech and SAPI 5.3 catalist4u 2009-08-08T11:33:42Z 2009-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#1441655 1 Answer by Eric Brown for How to add words to an already loaded grammar using System.Speech and SAPI 5.3 Eric Brown 2009-09-17T22:29:27Z 2009-09-17T22:29:27Z <p>In native SAPI, I'd use ISpGrammarBuilder2::AddTextSubset().</p>