程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 【開發實例】C#調用SAPI實現語音合成的兩種方法

【開發實例】C#調用SAPI實現語音合成的兩種方法

編輯:C#入門知識

我們都知道現在的語音合成TTS是可以通過微軟的SAPI實現的,好處我就不多說了,方便而已,因為在微軟的操作系統裡面就自帶了這個玩意,主要的方式有兩種:  1、使用COM組件技術,不管是C++,C#,Delphi都能玩的轉,開發出來的東西在XP和WIN7都能跑。(要引入SpeechLib,好像在項目上點引用,然後選到系統COM吧,好久沒弄,記不清楚了)  2、使用WIN7的windows api,其實最終還是調用了SAPI,所以開發出來的東西就只能在WIN7上面跑。  其實不管是哪一種,都是調用SAPI,可能後一種代碼比較簡單,使用已經安裝的TTS引擎,現在一般用NeoSpeech,這個就不解釋了,太強大了這個發音。。。  COM組件技術:  C#代碼  收藏代碼

  1. public class Speach   
  2. {   
  3. private static Speach _Instance = null ;   
  4. private SpeechLib.SpVoiceClass voice =null; //SAPI5.1  
  5. private SpeechLib.SpVoice voice = null;//SAPI 5.4  
  6. private Speach()   
  7. {   
  8. BuildSpeach() ;   
  9. }   
  10. public static Speach instance()   
  11. {   
  12. if (_Instance == null)   
  13. _Instance = new Speach() ;   
  14. return _Instance ;   
  15. }  
  16.   
  17. private void SetChinaVoice()   
  18. {   
  19. voice.Voice = voice.GetVoices(string.Empty,string.Empty).Item(0) ;   
  20. }   
  21.   
  22. private void SetEnglishVoice()   
  23. {   
  24. voice.Voice = voice.GetVoices(string.Empty,string.Empty).Item(1) ;   
  25. }   
  26.   
  27. private void SpeakChina(string strSpeak)   
  28. {   
  29. SetChinaVoice() ;   
  30. Speak(strSpeak) ;   
  31. }   
  32.   
  33. private void SpeakEnglishi(string strSpeak)   
  34. {   
  35. SetEnglishVoice() ;   
  36. Speak(strSpeak) ;   
  37. }   
  38.   
  39.   
  40.   
  41. public void AnalyseSpeak(string strSpeak)   
  42. {   
  43. int iCbeg = 0 ;   
  44. int iEbeg = 0 ;   
  45. bool IsChina = true ;   
  46. for(int i=0;i<strSpeak.Length;i++)   
  47. {   
  48. char chr = strSpeak[i] ;   
  49. if (IsChina)   
  50. {   
  51. if (chr<=122&&chr>=65)   
  52. {   
  53. int iLen = i - iCbeg ;   
  54. string strValue = strSpeak.Substring(iCbeg,iLen) ;   
  55. SpeakChina(strValue) ;   
  56. iEbeg = i ;   
  57. IsChina = false ;   
  58. }   
  59. }   
  60. else   
  61. {   
  62. if (chr>122||chr<65)   
  63. {   
  64. int iLen = i - iEbeg ;   
  65. string strValue = strSpeak.Substring(iEbeg,iLen) ;   
  66. this.SpeakEnglishi(strValue) ;   
  67. iCbeg = i ;   
  68. IsChina = true ;   
  69. }   
  70. }   
  71. }//end for   
  72. if (IsChina)   
  73. {   
  74. int iLen = strSpeak.Length - iCbeg ;   
  75. string strValue = strSpeak.Substring(iCbeg,iLen) ;   
  76. SpeakChina(strValue) ;   
  77. }   
  78. else   
  79. {   
  80. int iLen = strSpeak.Length - iEbeg ;   
  81. string strValue = strSpeak.Substring(iEbeg,iLen) ;   
  82. SpeakEnglishi(strValue) ;   
  83. }   
  84. }   
  85.   
  86. private void BuildSpeach()   
  87. {   
  88. if (voice == null)   
  89. voice = new SpVoiceClass() ;   
  90. }  
  91.   
  92. public int Volume   
  93. {   
  94. get   
  95. {   
  96. return voice.Volume ;   
  97. }   
  98.   
  99. set   
  100. {   
  101. voice.SetVolume((ushort)(value)) ;   
  102. }   
  103. }   
  104.   
  105. public int Rate   
  106. {   
  107. get   
  108. {   
  109. return voice.Rate ;   
  110. }   
  111. set   
  112. {   
  113. voice.SetRate(value) ;   
  114. }   
  115. }   
  116.   
  117. private void Speak(string strSpeack)   
  118. {   
  119. try   
  120. {   
  121. voice.Speak(strSpeack,SpeechVoiceSpeakFlags.SVSFlagsAsync) ;   
  122. }   
  123. catch(Exception err)   
  124. {   
  125. throw(new Exception("發生一個錯誤:"+err.Message)) ;   
  126. }   
  127. }   
  128.   
  129. public void Stop()   
  130. {   
  131. voice.Speak(string.Empty,SpeechLib.SpeechVoiceSpeakFlags.SVSFPurgeBeforeSpeak) ;   
  132. }   
  133.   
  134. public void Pause()   
  135.   
  136. {   
  137. voice.Pause() ;   
  138. }   
  139.   
  140. public void Continue()   
  141. {   
  142. voice.Resume() ;   
  143. }   
  144. }//end class   
在 private SpeechLib.SpVoiceClass voice =null;這裡,我們定義個一個用來發音的類,並且在第一次調用該類時,對它用BuildSpeach方法進行了初始化。 
我們還定義了兩個屬性Volume和Rate,能夠設置音量和語速。 
我們知道,SpVoiceClass 有一個Speak方法,我們發音主要就是給他傳遞一個字符串,它負責讀出該字符串,如下所示。  C#代碼  收藏代碼
  1. private void Speak(string strSpeack)   
  2. {   
  3. try   
  4. {   
  5. voice.Speak(strSpeack,SpeechVoiceSpeakFlags.SVSFlagsAsync) ;   
  6. }   
  7. catch(Exception err)   
  8. {   
  9. throw(new Exception("發生一個錯誤:"+err.Message)) ;   
  10. }  
  11. }   
第二種使用.NET類庫和系統API的代碼如下:  C#代碼  收藏代碼
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Speech.Synthesis;  
  6. using System.Speech;  
  7.   
  8. namespace StudyBeta  
  9. {  
  10.     public class SRead  
  11.     {  
  12.         public SpeechSynthesizer synth; //語音合成對象  
  13.         public SRead()  
  14.         {  
  15.             synth = new SpeechSynthesizer();  
  16.         }  
  17.         public SRead(int m, int n)  
  18.         {  
  19.             //使用 synth 設置朗讀音量 [范圍 0 ~ 100]  
  20.             synth.Volume = m;  
  21.             //使用 synth 設置朗讀頻率 [范圍 -10 ~ 10]  
  22.             synth.Rate = n;  
  23.         }  
  24.         public void SpeakChina(string ggg)  
  25.         {  
  26.             //SpVoice Voice = new SpVoice();  
  27.             synth.SelectVoice("Microsoft Lili");  
  28.             //Voice.Speak(ggg, SpFlags);  
  29.             synth.SpeakAsync(ggg);  
  30.             //String speechPeople = synth.Voice;  
  31.             //使用 synth 設置朗讀音量 [范圍 0 ~ 100]  
  32.             // synth.Volume = 80;  
  33.             //使用 synth 設置朗讀頻率 [范圍 -10 ~ 10]  
  34.             //      synth.Rate = 0;  
  35.             //使用synth 合成 wav 音頻文件:  
  36.             //synth.SetOutputToWaveFile(string path);  
  37.         }  
  38.         public void SpeakEnglish(string ggg)  
  39.         {  
  40.             //SpVoice Voice = new SpVoice();  
  41.             synth.SelectVoice("VW Julie");  
  42.             synth.Speak(ggg); //ggg為要合成的內容  
  43.         }  
  44.         public int m  
  45.         {  
  46.             get  
  47.             {  
  48.                 return synth.Volume;  
  49.             }  
  50.             set  
  51.             {  
  52.                 synth.Volume = value;  
  53.             }  
  54.         }  
  55.         public int n  
  56.         {  
  57.             get  
  58.             {  
  59.                 return synth.Rate;  
  60.             }  
  61.             set  
  62.             {  
  63.                 synth.Rate = value;  
  64.             }  
  65.         }  
  66. }  
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved