【发布时间】:2014-10-04 16:27:55
【问题描述】:
我想在我的语音应用程序中添加语音识别训练,我尝试并搜索了很多,但没有找到任何解决方案。
string ex = System.IO.Path.Combine("C:\\windows\\sysnative", "Speech\\SpeechUX\\SpeechUX.dll, RunWizard User Training");
string mode = System.IO.Path.Combine("C:\\windows\\sysnative", "rundll32.exe");
Process.Start(mode, ex);
但它给出了运行时错误提示,
There was a problem starting
C:\Windows\sysnative\Speech\SpeechUX\SpeechUX.dll
The specified module could not be found.
我在搜索时添加了 sysnative,我得到了这个,因为对于 x64 位 Windows,系统文件存储在 sysnative 中。
【问题讨论】:
-
这一切看起来都不对。我从未使用过 Windows 7 中的语音识别库,但通过 Google 快速搜索找到了这个,它看起来更符合我的预期。 msdn.microsoft.com/en-us/library/…
-
@senfo 我使用此语音识别创建了我的语音应用程序,但在训练部分卡住了。
-
您介意多解释一下您想做什么吗?我怀疑你遇到过一些相当糟糕的培训。
标签: c# speech-recognition