1. 程式人生 > >教你如何用C#制作文字轉換成聲音程序

教你如何用C#制作文字轉換成聲音程序

using edi 選擇算法 匹配 接收 隨機 initial 數字 轉換成

教你如何用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#制作文字轉換成聲音程序