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

  • 相关阅读:
    Tomcat配置文件源码分析--server.xml详解
    Tomcat配置文件源码分析--Catalina.bat
    Linux安装JDK详细操作步骤
    Nginx项目发布成功之后,再次启动服务器无法访问(解决办法)
    Nginx发布项目完整过程
    图书管理系统需求分析报告
    tigergraph 创建 字符串分割函数(c++)
    (第一周)第一周学习收获
    Ubuntu 挂载iso文件
    Ubuntu 安装ifconfig命令
  • 原文地址:https://www.cnblogs.com/yuanchao/p/13492157.html
Copyright © 2011-2022 走看看