教你如何用C#制作文字轉換成聲音程序
阿新 • • 發佈:2017-11-29
using edi 選擇算法 匹配 接收 隨機 initial 數字 轉換成 除聲明外,跑步客文章均為原創,轉載請以鏈接形式標明本文地址
教你如何用C#制作文字轉換成聲音程序
本文地址: http://www.paobuke.com/develop/c-develop/pbk23559.html
C#同步網絡時間的方法實例詳解C#使用post發送和接收數據的方法C#數字圖象處理之圖像灰度化方法C#中使用Split方法拆分字符串實例
教你如何用C#制作文字轉換成聲音程序
在System.Speech命名空間下,SpeechSynthesizer類可以把文字讀出來,一起來玩下~~
首先在Windows窗體項目中引入System.Speech。界面部分:
後臺代碼也很簡單,只不過調用了SpeechSynthesizer類的一些方法:
using System.Windows.Forms; using System.Speech; using System.Speech.Synthesis; namespace WindowsFormsApplication1 { public partial class Form1 : Form { private SpeechSynthesizer ss; public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { ss = new SpeechSynthesizer(); } private void buttonRead_Click(object sender, EventArgs e) { ss.Rate = trackBarSpeed.Value; ss.Volume = trackBarVolumn.Value; ss.SpeakAsync(txtMsg.Text); } private void buttonPause_Click(object sender, EventArgs e) { ss.Pause(); } private void buttonContinue_Click(object sender, EventArgs e) { ss.Resume(); } private void buttonRecord_Click(object sender, EventArgs e) { SpeechSynthesizer ss = new SpeechSynthesizer(); ss.Rate = trackBarSpeed.Value; ss.Volume = trackBarVolumn.Value; SaveFileDialog sfd = new SaveFileDialog(); sfd.Filter = "Wave Files|*.wav"; ss.SetOutputToWaveFile(sfd.FileName); ss.Speak(txtMsg.Text); ss.SetOutputToDefaultAudioDevice(); MessageBox.Show("完成錄音~~","提示"); } private void buttonClose_Click(object sender, EventArgs e) { Application.Exit(); } } }
教你如何用C#制作文字轉換成聲音程序
本文地址: http://www.paobuke.com/develop/c-develop/pbk23559.html
相關內容
C# 調用 JavaWebservice服務遇到的問題匯總C#正則表達式Regex類的常用匹配遊戲開發之隨機概率的選擇算法C#實現系統托盤通知的方法C#同步網絡時間的方法實例詳解C#使用post發送和接收數據的方法C#數字圖象處理之圖像灰度化方法C#中使用Split方法拆分字符串實例
教你如何用C#制作文字轉換成聲音程序