silverlight 语音转文本

发布于 2024-09-13 20:51:16 字数 99 浏览 5 评论 0原文

有谁知道是否可以录制语音并将其实时转录为文本?

我想用 silverlight 来做到这一点,或者如果标准 .Net 框架无法做到这一点,

谢谢您的帮助

Does anybody knows if it's possible to record a voice and transcribe it to text in real time?

I want to do that with silverlight or if it's not possible with the standard .Net framework

thanks for help

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

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

发布评论

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

评论(1

深陷 2024-09-20 20:51:16

该解决方案包含五个步骤:

  1. 在文本框中输入文本。

  2. 调用 Web 服务来处理文本。

  3. 使用 Microsoft 的 Text to Speech API 将文本转换为 WAV。

  4. 使用 WAV 解码类解码字节数组。

  5. 使用 Silverlight 的 MediaElement 播放 WAV 流。

http://msdn.microsoft.com/en-us/windows/dd901770。 ASPX

The solution consists of five steps:

  1. Entering text into a textbox.

  2. Calling a Web Service to process the text.

  3. Using Microsoft’s Text to Speech API to convert the text to WAV.

  4. Decoding the byte array with a WAV decoding class.

  5. Playing back the WAV stream with Silverlight’s MediaElement.

http://msdn.microsoft.com/en-us/windows/dd901770.aspx

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