如何在 Visual Studio 中为 C# 安装 SAPI?
我想使用 SAPI 并下载了pepsdk51msm.exe。当我尝试运行它时,它通过 WinZip 打开并提取文件。解压后得到msm扩展文件。
我不知道如何为 VS 2010 安装任何 API。我搜索过但没有得到任何重要信息。
请提供安装 API (SAPI) 的任何链接或指南
I want to work with SAPI and downloaded the speechsdk51msm.exe. When I try to run it its open through WinZip, and extracted the files. I got msm extension files after extracting.
I don't know how to install any API for VS 2010. I searched but not got any important information.
Please give any link or guidance for installing APIs (SAPI)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这些是 MSI 合并文件,旨在在客户的计算机上部署 SAPI。不要安装它们,SAPI 5.1 已过时。我认为当前的修订级别是 5.3,它作为 Windows 的一部分和/或由 .NET 框架安装程序部署。自 3.0 版起,SAPI 就被 .NET 框架封装,
您应该使用 System.Speech 命名空间。
These are MSI merge files, intended to deploy SAPI on your customer's machine. Do not install them, SAPI 5.1 is obsolete. I think the current revision level is 5.3, it is deployed as part of Windows and/or by the .NET framework installer. SAPI is wrapped by the .NET framework since version 3.0
Which is what you should use, System.Speech namespace.
如果您想探索 .Net 中的语音,
System.Speech
可能更适合您:http://msdn.microsoft.com/en-us/library/ms723627(VS.85).aspx。对于SDK,解压到您指定的目录后,您需要运行安装程序。没有特定的 Visual Studio 集成。您需要 P/Invoke 语音 DLL。
If you want to explore speech in .Net,
System.Speech
might be better suited for you: http://msdn.microsoft.com/en-us/library/ms723627(VS.85).aspx.As to the SDK, after it unpacks to the directory you specify, you need to run the installer. There is no specific Visual Studio integration. You'd need to P/Invoke to the speech DLLs.