将输入设置为默认音频设备 ( SetInputToDefaultAudioDevice() )
再会, 我需要有关此命令的帮助,但我找不到如何修复它。 这将是一种语音识别文本。
我有 win7 和 .NET Framework 4 客户端配置文件。 我正在使用 Visual Studio 2010,并使用 C# 进行编程。
问题: ... 私有语音识别引擎_recognizer;
私人无效button1_Click(对象发送者,RoatedEventArgs e) { ...
_recognizer.SetInputToDefaultAudioDevice();// 一切正常,但这里有问题。 ... } ...
当我运行它时。
System.PlatformNotSupportedException
未安装识别器。
感谢您的帮助,并对我的英语表示抱歉。
Good day,
I need help with this command i cant find how repair it.
It would be a recognition voice to text.
I have win7 and .NET Framework 4 Client Profile.
I am using Visual studio 2010 and i am programming in C#.
Problem:
...
private SpeechRecognitionEngine _recognizer;
private void button1_Click(object sender, RoutedEventArgs e)
{
...
_recognizer.SetInputToDefaultAudioDevice();// All works but here is problem.
...
}
...
When i run it.
System.PlatformNotSupportedException
No recognizer is installed.
Thanks for help and sorry for my English.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您很可能在 Windows XP 计算机上运行该程序。
检查“平台”部分以获取该类支持的平台列表:
http://msdn.microsoft.com/en-us/library/system.speech.recognition.speechrecognitionengine.aspx
.NET 框架中的某些功能需要特定库并非在支持 .NET 的所有 Windows 版本上都可用。
即使您有兼容的平台,该库也可能是您需要通过控制面板启用或从 Microsoft 网站下载的插件。
You are most likely running the program on a Windows XP machine.
Check the Platform section for a list of supported platforms for that class:
http://msdn.microsoft.com/en-us/library/system.speech.recognition.speechrecognitionengine.aspx
Some features in the .NET framework require specific libraries which are not available on all versions of Windows that support .NET.
Even if you have a compatible platform, the library might be a addon you need to enable through the Control Panel, or download from the Microsoft website.