如何使用 Microsoft 语音对象库创建 wav 文件

发布于 2024-08-28 04:04:22 字数 120 浏览 7 评论 0原文

我希望在我的 C# 程序中使用 Skype。我希望发起电话呼叫并注入音频文件供接收者收听。

是否可以使用 C# 中的 Microsoft 语音对象库来保存转换后的音频文件 (wav),而不是直接通过扬声器播放?

I am looking to use Skype in my C# program. I wish to initiate a phone call and inject an audio file for the receiver to listen to.

Is it possible to use Microsoft Speech Object Library in C# to save the converted audio file (wav), instead of just playing it directly through the speakers?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

顾忌 2024-09-04 04:04:22

为此,您将需要 .NET 3.0:

public void TextToSpeech(string text, string fileName)
{
   using (var stream = File.Create(fileName))
   {
      SpeechSynthesizer speechEngine = new SpeechSynthesizer();
      speechEngine.SetOutputToWaveStream(stream);
      speechEngine.Speak(text);
      stream.Flush();
   }
}

You will need .NET 3.0 for this:

public void TextToSpeech(string text, string fileName)
{
   using (var stream = File.Create(fileName))
   {
      SpeechSynthesizer speechEngine = new SpeechSynthesizer();
      speechEngine.SetOutputToWaveStream(stream);
      speechEngine.Speak(text);
      stream.Flush();
   }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文