silverlight 语音转文本
有谁知道是否可以录制语音并将其实时转录为文本?
我想用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该解决方案包含五个步骤:
在文本框中输入文本。
调用 Web 服务来处理文本。
使用 Microsoft 的 Text to Speech API 将文本转换为 WAV。
使用 WAV 解码类解码字节数组。
使用 Silverlight 的 MediaElement 播放 WAV 流。
http://msdn.microsoft.com/en-us/windows/dd901770。 ASPX
The solution consists of five steps:
Entering text into a textbox.
Calling a Web Service to process the text.
Using Microsoft’s Text to Speech API to convert the text to WAV.
Decoding the byte array with a WAV decoding class.
Playing back the WAV stream with Silverlight’s MediaElement.
http://msdn.microsoft.com/en-us/windows/dd901770.aspx