gpt4 book ai didi

c# - 使用 Phonics Sounds 的文字转语音

转载 作者:太空狗 更新时间:2023-10-29 23:26:16 25 4
gpt4 key购买 nike

如何通过按任意字母键获得拼音?例如,我想通过按“A”键获得 A 的语音。

我使用的是 Microsoft SAPI v5.1。你能给我指出正确的方向吗?

最佳答案

添加对 System.Speech 程序集的引用。

添加 using System.Speech.Synthesis;

using (var speechSynthesizer = new SpeechSynthesizer())
{
speechSynthesizer.Speak("A");
speechSynthesizer.Speak("B");
speechSynthesizer.Speak("C");
}

例如像这样:

using (var speechSynthesizer = new SpeechSynthesizer())
{
while (true)
{
var consoleKey = Console.ReadKey();
if (consoleKey.Key == ConsoleKey.Escape)
break;
var text = consoleKey.KeyChar.ToString();
speechSynthesizer.Speak(text);
}
}

关于c# - 使用 Phonics Sounds 的文字转语音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6039674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com