How do I load a Grammar xml file that uses SAPI 5.3 tags? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T10:18:47Zhttp://stackoverflow.com/feeds/question/546428http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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/546428/how-do-i-load-a-grammar-xml-file-that-uses-sapi-5-3-tags/651167#6511670Answer by Conor OG for How do I load a Grammar xml file that uses SAPI 5.3 tags?Conor OG2009-03-16T16:32:03Z2009-03-16T16:39:47Z<p>You appear to be using c#, and therefore the .NET interface to the speech system. As far as I can tell the .NET interface only explicitly supports the W3C SRGS XML grammar format,
<a href="http://www.w3.org/TR/speech-grammar/" rel="nofollow">http://www.w3.org/TR/speech-grammar/</a>. While the grammar format you link to is an MS specific format, which they seem to call CFG. Only the lowerlevel COM API gives details of the CFG format. </p>
<p>You should be able to do the same things in SRGS as in CFG.</p>
<p>You may be able to load the binary version of CFG after compiling it using the SDK tools.</p>
http://stackoverflow.com/questions/546428/how-do-i-load-a-grammar-xml-file-that-uses-sapi-5-3-tags/1231656#12316560Answer by catalist4u for How do I load a Grammar xml file that uses SAPI 5.3 tags?catalist4u2009-08-05T07:25:35Z2009-08-05T07:25:35Z<p>Can u send me your complete code because _speechRecognizer_SpeechRecognized() does't exist?</p>
<p>If acheived anything new so please that also @ umaid_rulz@yahoo.com</p>