如何使用 Microsoft SAPI 将文本转语音保存为 wav?
我需要将文本转换为语音,然后将其另存为 wav 文件。
I need to turn a text into speech and then save it as wav file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要将文本转换为语音,然后将其另存为 wav 文件。
I need to turn a text into speech and then save it as wav file.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
这是几分钟的游戏,所以买者自负。 对我来说效果很好。 我确实注意到 SpFileStream (它不实现 IDisposable,因此 try/finally)更喜欢绝对路径而不是相对路径。 C#。
This is from a few moments' play, so caveat emptor. Worked well for me. I did notice that SpFileStream (which doesn't implement IDisposable, thus the try/finally) prefers absolute paths to relative. C#.
正如我发现的如何更改输出格式,我们编写了如下代码:
这非常简单且易于理解。
酷网
And as I've found for how to change output format, we code something like this :
That's pretty easy and comprehensible.
Cool .net
以下 C# 代码使用 .Net 框架中的 System.Speech 命名空间。
使用命名空间之前需要先引用它,因为 Visual Studio 不会自动引用它。
我希望这是相关且有帮助的。
The following C# code uses the System.Speech namespace in the .Net framework.
It is necessary to reference the namespace before using it, because it is not automatically referenced by Visual Studio.
I hope this is relevant and helpful.