问题描述
var config = SpeechConfig.FromSubscription("","westeurope");
var synthesizer = new SpeechSynthesizer(config);
var result = await synthesizer.SpeakSsmlAsync(xmlFirstPart + voice + xmlSecondPart + synthesisText + xmlThirdPart);
var stream = AudioDataStream.Fromresult(result);
string file = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal),fileName + ".wav");
await stream.SavetoWaveFileAsync(file);
您好,这段代码与 Visual Studio 中的 Microsoft.CognitiveServices.Speech NuGet 一起使用 - 它将请求的字符串输出到音频。问题是输出音频后,程序死机。我认为第三行代码是问题所在,因为 await 函数没有结束,即使它完成了它的工作。有谁知道我该如何解决这个问题?提前致谢。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)