在C#中,可以使用System.Speech庫來實現文本轉語音的功能。下面是一個簡單的示例代碼:
using System;
using System.Speech.Synthesis;
class Program
{
static void Main()
{
// 創建一個SpeechSynthesizer對象
SpeechSynthesizer synth = new SpeechSynthesizer();
// 設置語音合成的語速
synth.Rate = 0;
// 設置要轉換為語音的文本
string text = "Hello, welcome to the world of C# speech synthesis.";
// 使用SpeechSynthesizer的Speak方法將文本轉換為語音并播放
synth.Speak(text);
// 關閉SpeechSynthesizer對象
synth.Dispose();
}
}
在這個示例中,我們創建了一個SpeechSynthesizer對象,設置了語速,并將一個文本轉換為語音并播放。你可以根據自己的需求設置語速、音量等參數來定制語音合成的效果。