SpeechSynthesizer 读取文字

来源:互联网 发布:手机淘宝怎样改地址 编辑:程序博客网 时间:2024/06/11 22:08
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();        }    }}
0 0
原创粉丝点击