0
打開我創建一個文本到語音的代碼。 我希望它打開網頁瀏覽器如何做到這一點? 我正在使用Windows 7操作系統。 我也下載了xampp。文本到語音Web應用程序如何在瀏覽器
using System.Speech.Synthesis;
namespace ConsoleApplication5
{
class Program
{
static void Main(string[] args)
{
SpeechSynthesizer synthesizer = new SpeechSynthesizer();
synthesizer.Volume = 100; // 0...100
synthesizer.Rate = -2; // -10...10
// Synchronous
synthesizer.Speak("Hello World");
// Asynchronous
synthesizer.SpeakAsync("Hello World");
}
}
}