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("完成录音!", "提示");
                }
            }

  • 相关阅读:
    【原创】ASP.NET Web开发,实现打印Log日志,步骤详解
    [原创] ASP.NET WEBAPI 接入微信公众平台 总结,Token验证失败解决办法
    Mac安装Linux
    mac下终端的一些命令
    《Python程序设计》题库--摘
    Day 28 类的用法延伸
    Day 27 面向对象补充
    Day 24~26 类,面向对象,属性
    Q 91~100
    Q 81~90
  • 原文地址:https://www.cnblogs.com/yuanchao/p/13492157.html
Copyright © 2011-2022 走看看