利用微软Text-To-Speech朗读文本

首先,要安装Microsoft Speech SDK,可以从微软网站上下载,我安装的是SAPI 5.1。安装完毕以后,会附带chm格式的开发文档。

创建一个C# Winform程序,拖一个RichTextBox控件,添加两个启停按钮。界面可以自己做,我的界面如下所示:

利用微软Text-To-Speech朗读文本_第1张图片

设置朗读属性的界面如下:

利用微软Text-To-Speech朗读文本_第2张图片

 

在工程中添加应用:SpeechLib,具体方法是添加引用->COM->Microsoft Speech Object Library

利用微软Text-To-Speech朗读文本_第3张图片

SpVoiceClass是朗读的函数,这个函数可以控制是同步朗读还是异步朗读,我在这里选择了是异步朗读。朗读的声音包括英文、中文、日文等,需要安装中文等语音库。这些也可以在微软的网站上找到。SpVoiceClass还可以控制是哪个声音朗读,朗读的语速、音量等属性。异步朗读还有一个问题就是当朗读完毕的时候控制按钮状态的恢复。另外说明:英文版的操作系统和中文版的操作系统中朗读声音的排序是不一样的,其他文章说0代表中文,请不要武断这么认为,在英文操作系统中,0是代表了英文,为了保险起见,可以读取系统中所有的语音列举到组合框以供选择。下面是主要的代码:

 

[csharp] view plaincopy

  1. public partial class MainForm : Office2007Form   
  2. {  
  3.     bool bStop;    // 是否停止  
  4.     bool bPause; // 是否暂停  
  5.     private Preference ThePreference = new Preference();    // 配置类  
  6.     SpVoiceClass SpeechInstance = new SpVoiceClass();    // 朗读类  
  7.       
  8.     public MainForm()   
  9.     {  
  10.         this.ThePreference.Init();  
  11.         InitializeComponent();  
  12.         // 自定义事件-配置修改后立即更新  
  13.         this.ThePreference.Invalidate += new Preference.InvalidateHandler(InvalidateSpeechCfg);  
  14.           
  15.         bStop = true;    // 初始停止  
  16.         bPause = false;    // 初始没有暂停  
  17.     }  
  18.       
  19.     private void MainForm_Load(object sender, EventArgs e)  
  20.     {  
  21.         // 配置语音、语速和音量  
  22.         this.SpeechInstance.Voice = this.SpeechInstance.GetVoices(string.Empty, string.Empty).Item(this.ThePreference.SpeechConfig.Type);  
  23.         this.SpeechInstance.Rate = this.ThePreference.SpeechConfig.Rate;  
  24.         this.SpeechInstance.Volume = this.ThePreference.SpeechConfig.Volume;  
  25.         // 异步模式下,朗读完毕的事件处理  
  26.         this.SpeechInstance.EndStream += new SpeechLib._ISpeechVoiceEvents_EndStreamEventHandler(FuncEndStream);  
  27.     }  
  28.       
  29.     private void FuncEndStream(int i, object o)  
  30.     {   
  31.         bStop = true;  
  32.         UpdateIcon_playpause();  
  33.     }  
  34.     /// <summary>   
  35.     /// 开始阅读和暂停的按钮   
  36.     /// </summary>   
  37.     /// <param name="sender"></param>   
  38.     /// <param name="e"></param>   
  39.     private void toolStripButton_play_pause_Click(object sender, EventArgs e)  
  40.     {  
  41.         if (bStop == true)  
  42.         {  
  43.             if (this.richTextBox.Lines.Length == 0)  
  44.             {  
  45.                 bStop = true;  
  46.             }  
  47.             else  
  48.             {  
  49.                 ReadTextInControl(this.richTextBox.Text);  
  50.                 if (bPause == true)    // 此处一定要有这个判断,因为从Pause状态直接调用Speak函数,不会朗读,除非Resume   
  51.                 {  
  52.                     SpeechInstance.Resume();  
  53.                     bPause = false;   
  54.                 }  
  55.                 bStop = false;  
  56.             }  
  57.         }  
  58.         else  
  59.         {  
  60.             if (bPause == true)  
  61.             {   
  62.                 bPause = false;  
  63.                 SpeechInstance.Resume();  
  64.             }  
  65.             else  
  66.             {  
  67.                 bPause = true;  
  68.                 SpeechInstance.Pause();  
  69.             }  
  70.             bStop = true;  
  71.         }  
  72.         UpdateIcon_playpause();  
  73.     }  
  74.     private void UpdateIcon_playpause()  
  75.     {  
  76.         if (bStop == true)  
  77.         {  
  78.             this.toolStripButton_play_pause.Image = ReadFish.Properties.Resources.Play;  
  79.         }  
  80.         else  
  81.         {  
  82.             if (bPause == true)  
  83.             {  
  84.                 this.toolStripButton_play_pause.Image = ReadFish.Properties.Resources.Play;  
  85.             }  
  86.             else  
  87.             {  
  88.                 this.toolStripButton_play_pause.Image = ReadFish.Properties.Resources.Pause;  
  89.             }  
  90.         }  
  91.     }  
  92.       
  93.     public void ReadTextInControl(string strRead)  
  94.     {  
  95.         SpeechInstance.Speak(strRead, SpeechVoiceSpeakFlags.SVSFlagsAsync);    // 异步朗读   
  96.     }  
  97.       
  98.     private void toolStripButton_stop_Click(object sender, EventArgs e)  
  99.     {  
  100.         if (bStop == false)  
  101.         {  
  102.             SpeechInstance.Speak(string.Empty, SpeechVoiceSpeakFlags.SVSFPurgeBeforeSpeak);    // 结束朗读  
  103.             bStop = true;  
  104.         }  
  105.         UpdateIcon_playpause();  
  106.     }  
  107.       
  108.     private void InvalidateSpeechCfg(object sender, EventArgs e)  
  109.     {  
  110.         this.SpeechInstance.Voice = this.SpeechInstance.GetVoices(string.Empty, string.Empty).Item(this.ThePreference.SpeechConfig.Type);  
  111.         this.SpeechInstance.Rate = this.ThePreference.SpeechConfig.Rate;  
  112.         this.SpeechInstance.Volume = this.ThePreference.SpeechConfig.Volume;  
  113.     }  
  114. }  

 

下面是获取和设置语音列表的函数实现
 
[csharp]   view plain copy
  1. cb_type.Items.Clear();  
  2. SpeechLib.SpVoice voice = new SpeechLib.SpVoice();  
  3. int i = 0;  
  4. foreach (SpeechLib.ISpeechObjectToken t in voice.GetVoices(string.Empty, string.Empty))  
  5. {  
  6.     cb_type.Items.Add(t.GetDescription(i++));  
  7. }  

 

你可能感兴趣的:(WinForm)