本文介绍了如何在ASP.NET中启用语音识别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 如何在asp.net中启用语音而不是短信。 是否有用于语音识别的API? 请帮助.. 我尝试过:How to enable speech instead of text messages in asp.net.Is there any API for speech recognization ??Please help..What I have tried:using System.Speech;using System.Speech.Synthesis; private void btnSubmit_Click(object sender, RoutedEventArgs e) { SpeechSynthesizer synthesizer = new SpeechSynthesizer(); synthesizer.Volume = 100; // 0...100 synthesizer.Rate = 0; // -10...10 // Synchronous synthesizer.Speak(txtSpeech.Text ); // Asynchronous // synthesizer.SpeakAsync("Welcome to the WPF Tutorial."); }推荐答案 这篇关于如何在ASP.NET中启用语音识别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 07-18 23:42