跟着微软走妥妥的,C#文字转语音有很多参数我就不说了,毕竟我也是初学者.跟大家分享最简单的方法,要好的效果得自己琢磨喽: 先添加引用System.Speech程序集: using System; using System.Speech.Synthesis; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { SpeechSynthesizer hello = new SpeechSyn…
相关资料: 注意:在手机上必须选安装文字转语音引擎“google Text To Speech”地址:http://www.shouji56.com/soft/GoogleWenZiZhuanYuYinYinQingGoogleTexttoSpeech_3864/ 结果总结: XE10.1 + 小米手机5 = 通过测试首先手机上必须安装语音包: 1.“google Text To Speech” (不知为什么我的只发英文) 2.“度秘语音引擎3.0” (中英都可以发音) 3.“科大讯飞语音引擎3…
相关资料: 注意:在手机上必须选安装文字转语音引擎“google Text To Speech”地址:http://www.shouji56.com/soft/GoogleWenZiZhuanYuYinYinQingGoogleTexttoSpeech_3864/ 结果总结: XE10.1 + 小米手机5 = 通过测试首先手机上必须安装语音包: 1.“google Text To Speech” (不知为什么我的只发英文) 2.“度秘语音引擎3.0” (中英都可以发音) 3.“科大讯飞语音引擎3…
一.项目中一直用到了文字转语音的功能,需求也比较简单,就是将一段报警信息通过语音的方式播放出来,之前一直采用CS客户端,利用微软自带的Speech语音播放库就可以完成, 1.1 封装winSpedk类代码如下: namespace Speak { using System; using System.Runtime.CompilerServices; using System.Speech.Synthesis; using System.Threading; using SpeechLib; p…