zoukankan      html  css  js  c++  java
  • C# Speech

      private void Button_Click(object sender, RoutedEventArgs e)
            {
                SpeechVideo_Read(2, 100, "You came to me Like the dawn through the night Just shining like the sun.");
            }

            public void SpeechVideo_Read(int rate, int volume, string speektext)  //读
            {
                speech.Rate = rate;
                speech.Volume = volume;
                speech.SpeakAsync(speektext);
            }

      public void SpeechVideo_Record(int rate, int volume, string recordtext)  //录音
            {
                SpeechSynthesizer speech = new SpeechSynthesizer();
                speech.Rate = rate;
                speech.Volume = volume;
                SaveFileDialog sfd = new SaveFileDialog();
                sfd.Filter = "文本文件(*.wav)|*.wav|所有文件(*.*)|*.*";
                //设置默认文件类型显示顺序
                sfd.FilterIndex = 1;
                //保存对话框是否记忆上次打开的目录
                sfd.RestoreDirectory = true;
                if (sfd.ShowDialog()== System.Windows.Forms.DialogResult.OK)
                {
                    string localfilepath = sfd.FileName.ToString();
                    speech.SetOutputToWaveFile(localfilepath);
                    speech.Speak(recordtext);
                    speech.SetOutputToDefaultAudioDevice();
                    System.Windows.MessageBox.Show("完成录音!", "提示");
                }
            }

  • 相关阅读:
    How to fix the error; 'Error: Bootstrap tooltips require Tether (http://github.hubspot.com/tether/)'
    CentOS 7.2安装教程
    webpack打包生成多个vendor的配置方法
    webpack务虚扫盲
    Webpack引入jquery及其插件的几种方法
    多线程Lock版生产者和消费者模式
    多线程共享全局变量以及锁机制
    多线程Thread类
    多线程threading模块
    Python正则表达式(二)
  • 原文地址:https://www.cnblogs.com/yuanchao/p/13492157.html
Copyright © 2011-2022 走看看