精品久久看,欧美成人久久一级c片免费,日本加勒比在线精品视频,国产一区二区三区免费大片天美,国产成人精品999在线,97理论三级九七午夜在线观看

東坡下載:內容最豐富最安全的下載站!

幫助|文件類型庫|最新更新|下載分類|排行榜

編程相關破解相關編程工具反編譯安裝制作程序源碼軟件補丁數據庫Visual Studiovc++visualbasicdreamweaver

首頁編程開發程序源碼 → dotnetspeech.dll 下載 32&64位

dotnetspeech.dll 下載

dotnetspeech.dll 下載32&64位

  • 大小:52KB
  • 語言:中文
  • 平臺:Android
  • 更新:2016-08-13 20:18
  • 等級:
  • 類型:程序源碼
  • 網站:暫無
  • 授權:免費軟件
  • 廠商:
  • 產地:國產軟件
好用好玩 50%(0)
坑爹 坑爹 50%(0)
軟件介紹軟件截圖相關軟件軟件教程網友評論下載地址

相關推薦:

    DotNetSpeech.dll的使用

    語音是人類最自然的交互方式,也是現階段軟件用戶界面發展的最高目標。微軟公司一直積極推動語音技術的發展,并且公布了語音開發平臺Speech SDK幫助開發人員實現語音應用。

    using System;
    using System.Drawing;
    using System.Collections;
    using System.ComponentModel;
    using System.Windows.Forms;
    using System.Data;
    using DotNetSpeech;

    namespace SpeechApp
    {
     /// <summary>
     /// Form1 的摘要說明。
     /// </summary>
     public class Form1 : System.Windows.Forms.Form
     {
      private System.Windows.Forms.GroupBox groupBox1;
      private System.Windows.Forms.TextBox textBox1;
      private System.Windows.Forms.Button ButtonSynthesis;
      private System.Windows.Forms.Button ButtonTTStoWave;
      /// <summary>
      /// 必需的設計器變量。
      /// </summary>
      private System.ComponentModel.Container components = null;

      public Form1()
      {
       //
       // Windows 窗體設計器支持所必需的
       //
       InitializeComponent();

       //
       // TODO: 在 InitializeComponent 調用后添加任何構造函數代碼
       //
      }

      /// <summary>
      /// 清理所有正在使用的資源。
      /// </summary>
      protected override void Dispose( bool disposing )
      {
       if( disposing )
       {
        if (components != null) 
        {
         components.Dispose();
        }
       }
       base.Dispose( disposing );
      }

      #region Windows 窗體設計器生成的代碼
      /// <summary>
      /// 設計器支持所需的方法 - 不要使用代碼編輯器修改
      /// 此方法的內容。
      /// </summary>
      private void InitializeComponent()
      {
       this.groupBox1 = new System.Windows.Forms.GroupBox();
       this.textBox1 = new System.Windows.Forms.TextBox();
       this.ButtonSynthesis = new System.Windows.Forms.Button();
       this.ButtonTTStoWave = new System.Windows.Forms.Button();
       this.groupBox1.SuspendLayout();
       this.SuspendLayout();
       // 
       // groupBox1
       // 
       this.groupBox1.Controls.Add(this.textBox1);
       this.groupBox1.Location = new System.Drawing.Point(8, 8);
       this.groupBox1.Name = "groupBox1";
       this.groupBox1.Size = new System.Drawing.Size(272, 144);
       this.groupBox1.TabIndex = 0;
       this.groupBox1.TabStop = false;
       this.groupBox1.Text = "請輸入要合成的文本";
       // 
       // textBox1
       // 
       this.textBox1.Location = new System.Drawing.Point(8, 24);
       this.textBox1.Multiline = true;
       this.textBox1.Name = "textBox1";
       this.textBox1.Size = new System.Drawing.Size(256, 112);
       this.textBox1.TabIndex = 0;
       this.textBox1.Text = "歡迎光臨Lion互動網絡";
       // 
       // ButtonSynthesis
       // 
       this.ButtonSynthesis.CausesValidation = false;
       this.ButtonSynthesis.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
       this.ButtonSynthesis.Location = new System.Drawing.Point(24, 160);
       this.ButtonSynthesis.Name = "ButtonSynthesis";
       this.ButtonSynthesis.TabIndex = 1;
       this.ButtonSynthesis.Text = "朗 讀";
       this.ButtonSynthesis.Click += new System.EventHandler(this.ButtonSynthesis_Click);
       // 
       // ButtonTTStoWave
       // 
       this.ButtonTTStoWave.CausesValidation = false;
       this.ButtonTTStoWave.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
       this.ButtonTTStoWave.Location = new System.Drawing.Point(128, 160);
       this.ButtonTTStoWave.Name = "ButtonTTStoWave";
       this.ButtonTTStoWave.Size = new System.Drawing.Size(136, 23);
       this.ButtonTTStoWave.TabIndex = 2;
       this.ButtonTTStoWave.Text = "生成聲音文件(WAV)";
       this.ButtonTTStoWave.Click += new System.EventHandler(this.ButtonTTStoWave_Click);
       // 
       // Form1
       // 
       this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
       this.ClientSize = new System.Drawing.Size(292, 191);
       this.Controls.Add(this.ButtonTTStoWave);
       this.Controls.Add(this.ButtonSynthesis);
       this.Controls.Add(this.groupBox1);
       this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
       this.Name = "Form1";
       this.Text = "歡迎光臨Lion互動網絡";
       this.groupBox1.ResumeLayout(false);
       this.ResumeLayout(false);

      }
      #endregion

      /// <summary>
      /// 應用程序的主入口點。
      /// </summary>
      [STAThread]
      static void Main() 
      {
       Application.Run(new Form1());
      }

      /// <summary>
      /// 朗讀
      /// </summary>
      /// <param name="sender"></param>
      /// <param name="e"></param>
      private void ButtonSynthesis_Click(object sender, System.EventArgs e)
      {
       try
       {
        DotNetSpeech.SpeechVoiceSpeakFlags SSF = DotNetSpeech.SpeechVoiceSpeakFlags.SVSFlagsAsync;
        DotNetSpeech.SpVoice vo = new SpVoiceClass();
        vo.Speak(this.textBox1.Text,SSF);
       }
       catch(System.Exception ec)
       {
        MessageBox.Show(ec.ToString(),"SpeechApp",MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Error);
       }
      }

      /// <summary>
      /// 生成聲音文件
      /// </summary>
      /// <param name="sender"></param>
      /// <param name="e"></param>
      private void ButtonTTStoWave_Click(object sender, System.EventArgs e)
      {
       try
       {
        DotNetSpeech.SpeechVoiceSpeakFlags SSF = DotNetSpeech.SpeechVoiceSpeakFlags.SVSFlagsAsync;
        DotNetSpeech.SpVoice vo = new SpVoiceClass();
        System.Windows.Forms.SaveFileDialog SFD = new System.Windows.Forms.SaveFileDialog();
        SFD.Filter = "All files (*.*)|*.*|wav files (*.wav)|*.wav";
        SFD.Title = "Save to a wav file";
        SFD.FilterIndex = 2;
        SFD.RestoreDirectory = true;
        if(SFD.ShowDialog()==System.Windows.Forms.DialogResult.OK)
        {
         DotNetSpeech.SpeechStreamFileMode SSFM = DotNetSpeech.SpeechStreamFileMode.SSFMCreateForWrite;
         DotNetSpeech.SpFileStream SFS = new DotNetSpeech.SpFileStreamClass();
         SFS.Open(SFD.FileName,SSFM,false);
         vo.AudioOutputStream = SFS;
         vo.Speak(this.textBox1.Text,SSF);
         vo.WaitUntilDone(System.Threading.Timeout.Infinite);
         SFS.Close();
        }
       }
       catch(System.Exception ec)
       {
        MessageBox.Show(ec.ToString(),"SpeechApp",MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Error);
       }
      }
     }
    }


    PC官方
    安卓官方手機版
    IOS官方手機版

    dotnetspeech.dll 下載截圖

    下載地址

    dotnetspeech.dll 下載 32&64位

    熱門評論
    最新評論
    昵稱:
    表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
    字數: 0/500 (您的評論需要經過審核才能顯示)

    編輯推薦

    報錯

    請簡要描述您遇到的錯誤,我們將盡快予以修正。

    轉帖到論壇
    輪壇轉帖HTML方式

    輪壇轉帖UBB方式

    主站蜘蛛池模板: 色婷婷亚洲 | 一级毛片在线全部免费播放 | 日韩城人视频 | 久久久久国产精品免费免费 | 色人阁婷婷 | 国产精品福利一区二区久久 | 97在线播放 | 丁香婷婷激情 | 久久夜色精品国产 | 欧美成人性色 | 青草免费在线 | 欧美成人一区二区三区在线视频 | 久久精品一区二区三区四区 | 色男人的天堂 | 过春天在线观看完整版免费 | 性做久久久久久久久浪潮 | 久久国产麻豆 | 成人av电影网站 | 国产精品深夜福利免费观看 | 国产亚洲综合色就色 | 欧美一区二区精品 | 免费在线亚洲视频 | 日韩国产欧美在线观看 | 久久精品成人 | 王朝的女人在线观看免费完整 | a级毛片在线播放 | 久久这里只有精品久久 | 国产精品网址你懂的 | 青青草91久久国产频道 | 久久99久久精品久久久久久 | 国产国语一级毛片在线视频 | 欧美色视频网 | 色视频在线观看完整免费版 | 你懂的在线播放 | www.亚洲成人.com | 国产不卡的一区二区三区四区 | 免费观看国产大片资源视频 | 久久国产欧美日韩精品免费 | 五月婷婷伊人网 | 国产精品久久久免费视频 | 桃花视频在线观看高清版mv |