将输入设置为默认音频设备 ( SetInputToDefaultAudioDevice() )

发布于 2024-11-27 07:58:33 字数 421 浏览 2 评论 0原文

再会, 我需要有关此命令的帮助,但我找不到如何修复它。 这将是一种语音识别文本。

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眉目亦如画i 2024-12-04 07:58:33

您很可能在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文