我想在我的应用程序中为低级语言添加“文本到语音”的功能(例如:普什图语,...)
.NET 中有一个库
System.Speech.Synthesis.PromptBuilder PBuilder = new System.Speech.Synthesis.PromptBuilder();
PBuilder.AppendTextWithPronunciation("test", "riːdɪŋ"); // it will say 'reading'
python中是否存在用于执行此活动的引擎?我想知道python是否存在“语音字符到语音”引擎?