如何在 VoCon Hybrid 中收听 "any speech" 并捕获所说的内容
How to listen for "any speech" in VoCon Hybrid and capture what was said
我的部分任务是制作一个使用 Vocon 模拟口述和发送短信的系统。
我尝试使用 <...> 又名 "garbage" 规则,如下所示:
#BNF+EMV2.1;
!grammar messageInput;
!start <messageInput>;
<messageInput> : cancel | <...>;
不幸的是,这意味着我没有理解所说的内容,而是得到了“<...>”作为结果。
如何让 Vocon 听到任何演讲,但向我报告说了什么?
(如果需要在C代码而不是语音输入语法中进行更改,我也对此感兴趣)
我在 5 天前询问了 Nuance 技术支持,终于在几个小时前询问了他们的回答:
What you described (returning any spoken text) is dictation -- not
grammar-based speech recognition.
To perform dictation with Vocon Hybrid, you use the server-based or
cloud-based service via the NMSP or HTTP interface.
Please search for "dictation" in the Vocon Hybrid 4.8 documentation.
所以总结一下,我想做的事情是不可能的;它需要不同的机制。
我的部分任务是制作一个使用 Vocon 模拟口述和发送短信的系统。
我尝试使用 <...> 又名 "garbage" 规则,如下所示:
#BNF+EMV2.1;
!grammar messageInput;
!start <messageInput>;
<messageInput> : cancel | <...>;
不幸的是,这意味着我没有理解所说的内容,而是得到了“<...>”作为结果。
如何让 Vocon 听到任何演讲,但向我报告说了什么?
(如果需要在C代码而不是语音输入语法中进行更改,我也对此感兴趣)
我在 5 天前询问了 Nuance 技术支持,终于在几个小时前询问了他们的回答:
What you described (returning any spoken text) is dictation -- not grammar-based speech recognition.
To perform dictation with Vocon Hybrid, you use the server-based or cloud-based service via the NMSP or HTTP interface.
Please search for "dictation" in the Vocon Hybrid 4.8 documentation.
所以总结一下,我想做的事情是不可能的;它需要不同的机制。