用C#实现语音技术

2016-02-19 17:09 5 1 收藏

想要天天向上,就要懂得享受学习。图老师为大家推荐用C#实现语音技术,精彩的内容需要你们用心的阅读。还在等什么快点来看看吧!

【 tulaoshi.com - 编程语言 】

  电脑朗读(英文)一个很好的触发点,通过它可以实现电子小说阅读、英文听力测试、英文单词学习...

  下面的Speech已对MSTTS作了简单封装。

  1.安装好MSTTS(如果你有装金山词霸,系统就已经安装了),可以在winntspeech中打到vtxtauto.tlb文件;

  2.用.Net SDK自带的tlbimp工具把vtxtauto.tlb转换成.dll格式:

  tlbimp vtxtauto.tlb /silent /namespace:mstts /out:mstts.dll

  这时的mstts.dll已成为.net framework运行库的一个类。

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

  3.编写一个封装vtxtauto的简单类:Speech .

  

//========================Speech.cs======================using System;using mstts; //MSTTS名称空间namespace Bedlang{ //定义名称空间public class Speech{private VTxtAuto VTxtAutoEx;public Speech(){VTxtAutoEx = new VTxtAuto();VTxtAutoEx.Register(" "," "); //注册COM组件}public void Speak(String text){VTxtAutoEx.Speak(text, 0); //发音}}}//========================Speech.cs======================

  4.编译Bedlang.Speech

  csc /target:library /out:Bedlang.dll speech.cs /r:mstts.dll

  如果用vs.net开发,可直接生成项目就可以了。

  5.发音实现

  

//========================demo.cs======================分别加入Label,TextBox,Button控件各一个到windows Form中,修改它们的属性,源代码如下:using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Data;namespace Bedlang{////// Form1 的摘要说明。///public class demo : System.Windows.Forms.Form{private System.Windows.Forms.Label label1;private System.Windows.Forms.TextBox textBox1;private System.Windows.Forms.Button button1;////// 必需的设计器变量。///private System.ComponentModel.Container components = null;public demo(){//// Windows 窗体设计器支持所必需的//InitializeComponent();//// TODO: 在 InitializeComponent 调用后添加任何构造函数代码//}////// 清理所有正在使用的资源。///protected override void Dispose( bool disposing ){if( disposing ){if (components != null){components.Dispose();}}base.Dispose( disposing );}#region Windows Form Designer generated code////// 设计器支持所需的方法 - 不要使用代码编辑器修改/// 此方法的内容。///private void InitializeComponent(){this.label1 = new System.Windows.Forms.Label();this.textBox1 = new System.Windows.Forms.TextBox();this.button1 = new System.Windows.Forms.Button();this.SuspendLayout();//// label1//this.label1.Location = new System.Drawing.Point(24, 16);this.label1.Name = "label1";this.label1.Size = new System.Drawing.Size(120, 23);this.label1.TabIndex = 0;this.label1.Text = "输入要朗读的文字:";//// textBox1//this.textBox1.Location = new System.Drawing.Point(24, 48);this.textBox1.Name = "textBox1";this.textBox1.Size = new System.Drawing.Size(248, 21);this.textBox1.TabIndex = 1;this.textBox1.Text = "";//// button1//this.button1.Location = new System.Drawing.Point(112, 112);this.button1.Name = "button1";this.button1.TabIndex = 2;this.button1.Text = "朗读";this.button1.Click += new System.EventHandler(this.button1_Click);//// demo//this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);this.ClientSize = new System.Drawing.Size(292, 197);this.Controls.AddRange(new System.Windows.Forms.Control[] {this.button1,this.textBox1,this.label1});this.Name = "demo";this.Text = "demo";this.ResumeLayout(false);}#endregion////// 应用程序的主入口点。///[STAThread]static void Main(){Application.Run(new demo());}private void button1_Click(object sender, System.EventArgs e){Speech s=new Speech(); //创建一个Speech对象if(textBox1.Text.Length==0)s.Speak("Please input letter."); //发音elses.Speak(textBox1.Text);}}}//========================demo.cs======================

  6.编译demo.cs

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

  csc demo.cs /r:bedlang.dll

  Vs.net环境下可直接编译成exe文件。

  7.运行demo.exe

  输入要要朗读的文字,程序就可朗读了啦.

来源:http://www.tulaoshi.com/n/20160219/1614363.html

延伸阅读
本文向大家介绍Windows Sockets的一些关于用C#实现的原始套接字(Raw Socket)的编程,以及在此基础上实现的网络封包监视技术。同Winsock1相比,Winsock2最明显的就是支持了Raw Socket套接字类型,使用Raw Socket,可把网卡设置成混杂模式,在这种模式下,我们可以收到网络上的IP包,当然包括目的不是本机的IP包,通过原始套接字,我们也可以...
委托属于C#中的新名词,它的应用也非常广泛,例如事件就是委托最简单而又直接的例子。 那么首先说说什么是委托,其实委托在用过C或者C++的人看来就是函数指针,不过使用C#的大多数人都没有用过这两门语言,因此对委托的理解不是很深,对于委托可以简单的从字面去理解,即委托别人去执行某些操作,也就是说执行一个操作,而这个操作过...
实现步骤: 1.实现整个鼠标框选的几个事件(down、move、up),当鼠标点下记录鼠标框选的起点,鼠标抬起结束操作。 2.以鼠标框选过程中获取的鼠标坐标为基点计算框选的矩形的4点坐标,4点坐标以顺时针方向布点。 3.通过Shape.Path类实现在类上画出此矩形。 代码如下: 代码如下: namespace HostDemo {  public class HostCanvas : Ca...
谈起socket编程,大家也许会想起QQ和IE,没错。还有许多网络工具如P2P、NetMeeting等在应用层实现的应用程序,也是用socket来实现的。Socket是一个网络编程接口,实现于网络应用层,Windows Socket包括了一套系统组件,充分利用了Microsoft Windows 消息驱动的特点。Socket规范1.1版是在1993年1月发行的,并广泛用于此后出现的Windows9x操...
本文是介绍使用Visual C#实现自动计算四则混合运算的一种方法,在.NET1.1框架中,还没有包含全现成的类,不过,现在经过我们下文的介绍,大家完全可以自己写一个,作用嘛,没什么,就是熟悉一下栈的用法,或者家里有上小学的,可以写一个程序给孩子练习一下四则混合运算也行,哈哈,废话不多说了,讲正题吧。 出一个典型的算术题: (6...

经验教程

77

收藏

62
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部