微软语音合成朗读c#
生活随笔
收集整理的這篇文章主要介紹了
微软语音合成朗读c#
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
?經(jīng)過測試,發(fā)現(xiàn)微軟的語音服務(wù)在發(fā)音方面略強(qiáng)于科大訊飛。
using Microsoft.CognitiveServices.Speech; ... public async Task SynthesisToSpeakerAsync(string text){if (text == ""){textBox1.Text += $"識別讀取文本: [{text}]\r\n";return;}var config = SpeechConfig.FromSubscription("6666666666666666", "westus2");config.SpeechRecognitionLanguage = "zh-CN";config.SpeechSynthesisLanguage = "zh-CN";//https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/language-support#neural-voicesconfig.SpeechSynthesisVoiceName = comboBox1.Text;synthesizer = null;using (synthesizer = new SpeechSynthesizer(config)){using (var result = await synthesizer.SpeakTextAsync(text)){if (result.Reason == ResultReason.SynthesizingAudioCompleted){AudioCompleted = true;textBox1.Text += $"識別讀取文本: [{text}]\r\n";}else if (result.Reason == ResultReason.Canceled){var cancellation = SpeechSynthesisCancellationDetails.FromResult(result);textBox1.Text += ($"CANCELED: Reason={cancellation.Reason}\r\n");if (cancellation.Reason == CancellationReason.Error){textBox1.Text += ($"CANCELED: ErrorCode={cancellation.ErrorCode}\r\n");textBox1.Text += ($"CANCELED: ErrorDetails=[{cancellation.ErrorDetails}]\r\n");textBox1.Text += ($"CANCELED: Did you update the subscription info?\r\n");}}}// This is to give some time for the speaker to finish playing back the audio}}總結(jié)
以上是生活随笔為你收集整理的微软语音合成朗读c#的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 深度学习基础 - 三角函数
- 下一篇: C#音效播放PlaySound