用户登录  |  用户注册
首 页商业源码原创产品编程论坛
当前位置:PB创新网文章中心.Net

DotNet语音技术实现

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-12 15:57:21

语音实现

    “电脑发音”(英文)一个很好的触发点,通过它可以实现电子小说阅读、英文听力测试、英文单词学习...
    下面的Speech已对MSTTS作了简单封装。

1.安装好MSTTS,可以在windows\speech中打到vtxtauto.lib文件

2.用.Net SDK自带的tlbimp工具把vtxtauto.tlb转换成.dll格式:
  tlbimp vtxtauto.tlb /silent /namespace:mstts /out:mstts.dll
  这时的mstts.dll已成为.net framework运行库的一个类。

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

5.发音实现
//========================demo.cs======================
using System;
using System.Windows.Forms;
using Bedlang;   //引用名称空间

public class demo : Form {     

public static void Main() {
  Application.Run( new demo() );
}

public demo(){
  Speech s = new Speech();    //创建一个Speech对象
  s.Speak("Bedlang");     //发音 
}

}
//========================demo.cs======================

6.编译demo.cs
  csc demo.cs /r:bedlang.dll

7.运行demo.exe
  程序发音啦.

Tags:

作者:佚名

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论

栏目导航

本类热门阅览

相关文章

PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:968.75000 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号