以编程方式将音频转换为文本

时间:2015-08-28 07:09:24

标签: c# asp.net-mvc audio

我想将.mp3.wav中的音频转换为文字.. 我写了

SpeechRecognitionEngine sre = new SpeechRecognitionEngine();

但显示缺少装配的错误 我在这里阅读了很多文章和问题但是先不明白该做什么 还尝试安装speech.dll,但显示错误

  

请确保文件可访问且有效的程序集或COM组件

我可以从哪里下载链接?

如果任何人可以解释我一步一步安装PLZ。我是新手。

1 个答案:

答案 0 :(得分:1)

System.Speech是.NET Framework的一部分。要安装它,请在Visual Studio中右键单击项目并添加引用:

enter image description here

在下一个窗口中选择 Assemblies / Framework 下的System.Speech,然后按OK:

enter image description here

您现在可以引用System.Speech包。只需输入您的代码并添加您的使用声明:

enter image description here