使用 SAPI 加载听写
我可以使用听写资源工具包或此处给出的指示创建备用听写语法。我无法使用 C++ 加载新的听写主题。我正在尝试修改 sapi5.1 sdk 提供的 simpledict 示例。以下不起作用。
std::wstring stemp = s2ws("grammar:dictation#Genre"); LPCWSTR mygrammar = stemp.c_str(); hr = m_cpDictationGrammar->LoadDictation(mygrammar, SPLO_STATIC);
I am able to create alternate dictation grammars using the dictation resource kit or directions given here. I am not able to load the new dictation topic with c++. I am trying to modify the simpledict sample provided with the sapi5.1 sdk. The following doesn't work.
std::wstring stemp = s2ws("grammar:dictation#Genre"); LPCWSTR mygrammar = stemp.c_str(); hr = m_cpDictationGrammar->LoadDictation(mygrammar, SPLO_STATIC);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的新听写语言模型名为“Genre”,
应该可以解决问题。
Assuming your new dictation language model is named "Genre",
should do the trick.