[Speech recognition] system. Speech

Source: Internet
Author: User

An interesting thing that may be used in the future.

C # Speech Recognition: In the namespace system. Speech, speechsynthesizer can convert text into speech.

 

Paste the Code:

Public partial class form1: FORM {private speechsynthesizer SS; Public form1 () {initializecomponent ();} private void form1_load (Object sender, eventargs e) {Ss = new speechsynthesizer ();} private void button#click (Object sender, eventargs e) {ss. rate = trackbarspeed. value; SS. volume = trackbarvoice. value; SS. speakasync (txtspeechtext. text);} private void button2_click (Object sender, eventar GS e) {ss. pause ();} private void button3_click (Object sender, eventargs e) {ss. resume ();} private void button4_click (Object sender, eventargs e) {speechsynthesizer Ss = new speechsynthesizer (); SS. rate = trackbarspeed. value; SS. volume = trackbarvoice. value; savefiledialog savefd = new savefiledialog (); savefd. filter = "wave files | *. wav "; SS. setoutputtowavefile (savefd. filename); SS. speak (txtsp Eechtext. Text); SS. setoutputtodefaauaudiodevice (); MessageBox. Show ("complete recording ~~~ "," Prompt ");} private void button5_click (Object sender, eventargs e) {application. Exit ();}}

 

[Speech recognition] system. Speech

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.