using System;
using System.Speech.Synthesis;
namespace SpeechSynthesizerDemo
{
class Program
{
private static void Main(string[] args)
{
var speechSynthesizer = new SpeechSynthesizer();
speechSynthesizer.SpeakAsync("尹恩惠,1984年10月3日出生于韩国首尔特别市,韩国影视女演员、歌手。1999年以韩国女子歌手组合Baby V.O.X出道。");
Console.ReadKey();
}
}
}
SpeechSynthesizer 读取文字
最新推荐文章于 2023-11-21 15:20:36 发布