1 Star 0 Fork 2

wit/文字转语音

forked from 冰凌呀/文字转语音 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Program.cs 596 Bytes
一键复制 编辑 原始数据 按行查看 历史
冰凌呀 提交于 2022-06-22 15:43 . 添加项目文件。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Speech;
using System.Speech.Synthesis;
namespace 文字转语音
{
/// <summary>
/// 莫得感情得语音合成器
/// </summary>
class Program
{
public static SpeechSynthesizer speech= new SpeechSynthesizer();
static void Main(string[] args)
{
speech.Rate = -10;
speech.Volume = 100;
speech.SpeakAsync("你好,我是冰凌");
Console.ReadKey();
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/wiit/text-to-speech.git
git@gitee.com:wiit/text-to-speech.git
wiit
text-to-speech
文字转语音
master

搜索帮助