• linkedu视频
  • 平面设计
  • 电脑入门
  • 操作系统
  • 办公应用
  • 电脑硬件
  • 动画设计
  • 3D设计
  • 网页设计
  • CAD设计
  • 影音处理
  • 数据库
  • 程序设计
  • 认证考试
  • 信息管理
  • 信息安全
菜单
linkedu.com
  • 网页制作
  • 数据库
  • 程序设计
  • 操作系统
  • CMS教程
  • 游戏攻略
  • 脚本语言
  • 平面设计
  • 软件教程
  • 网络安全
  • 电脑知识
  • 服务器
  • 视频教程
  • JavaScript
  • ASP.NET
  • PHP
  • 正则表达式
  • AJAX
  • JSP
  • ASP
  • Flex
  • XML
  • 编程技巧
  • Android
  • swift
  • C#教程
  • vb
  • vb.net
  • C语言
  • Java
  • Delphi
  • 易语言
  • vc/mfc
  • 嵌入式开发
  • 游戏开发
  • ios
  • 编程问答
  • 汇编语言
  • 微信小程序
  • 数据结构
  • OpenGL
  • 架构设计
  • qt
  • 微信公众号
您的位置:首页 > 程序设计 >C#教程 > C#中调用SAPI实现语音合成的2种方法

C#中调用SAPI实现语音合成的2种方法

作者: 字体:[增加 减小] 来源:互联网 时间:2017-05-28

通过本文主要向大家介绍了sapi 语音库,sapi 语音识别,sapi中文语音包,.bd sapi cache,sapi等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com

我们都知道现在的语音合成TTS是可以通过微软的SAPI实现的,好处我就不多说了,方便而已,因为在微软的操作系统里面就自带了这个玩意,主要的方式有两种:

1、使用COM组件技术,不管是C++,C#,Delphi都能玩的转,开发出来的东西在XP和WIN7都能跑。(要引入SpeechLib,好像在项目上点引用,然后选到系统COM吧,好久没弄,记不清楚了)
2、使用WIN7的windows api,其实最终还是调用了SAPI,所以开发出来的东西就只能在WIN7上面跑。

其实不管是哪一种,都是调用SAPI,可能后一种代码比较简单,使用已经安装的TTS引擎,现在一般用NeoSpeech,这个就不解释了,太强大了这个发音。。。

COM组件技术:

public class Speach 
{ 
private static Speach _Instance = null ; 
private SpeechLib.SpVoiceClass voice =null; //SAPI5.1
private SpeechLib.SpVoice voice = null;//SAPI 5.4
private Speach() 
{ 
BuildSpeach() ; 
} 
public static Speach instance() 
{ 
if (_Instance == null) 
_Instance = new Speach() ; 
return _Instance ; 
}

private void SetChinaVoice() 
{ 
voice.Voice = voice.GetVoices(string.Empty,string.Empty).Item(0) ; 
} 

private void SetEnglishVoice() 
{ 
voice.Voice = voice.GetVoices(string.Empty,string.Empty).Item(1) ; 
} 

private void SpeakChina(string strSpeak) 
{ 
SetChinaVoice() ; 
Speak(strSpeak) ; 
} 

private void SpeakEnglishi(string strSpeak) 
{ 
SetEnglishVoice() ; 
Speak(strSpeak) ; 
} 



public void AnalyseSpeak(string strSpeak) 
{ 
int iCbeg = 0 ; 
int iEbeg = 0 ; 
bool IsChina = true ; 
for(int i=0;i<strSpeak.Length;i++) 
{ 
char chr = strSpeak[i] ; 
if (IsChina) 
{ 
if (chr<=122&&chr>=65) 
{ 
int iLen = i - iCbeg ; 
string strValue = strSpeak.Substring(iCbeg,iLen) ; 
SpeakChina(strValue) ; 
iEbeg = i ; 
IsChina = false ; 
} 
} 
else 
{ 
if (chr>122||chr<65) 
{ 
int iLen = i - iEbeg ; 
string strValue = strSpeak.Substring(iEbeg,iLen) ; 
this.SpeakEnglishi(strValue) ; 
iCbeg = i ; 
IsChina = true ; 
} 
} 
}//end for 
if (IsChina) 
{ 
int iLen = strSpeak.Length - iCbeg ; 
string strValue = strSpeak.Substring(iCbeg,iLen) ; 
SpeakChina(strValue) ; 
} 
else 
{ 
int iLen = strSpeak.Length - iEbeg ; 
string strValue = strSpeak.Substring(iEbeg,iLen) ; 
SpeakEnglishi(strValue) ; 
} 
} 

private void BuildSpeach() 
{ 
if (voice == null) 
voice = new SpVoiceClass() ; 
}

public int Volume 
{ 
get 
{ 
return voice.Volume ; 
} 

set 
{ 
voice.SetVolume((ushort)(value)) ; 
} 
} 

public int Rate 
{ 
get 
{ 
return voice.Rate ; 
} 
set 
{ 
voice.SetRate(value) ; 
} 
} 

private void Speak(string strSpeack) 
{ 
try 
{ 
voice.Speak(strSpeack,SpeechVoiceSpeakFlags.SVSFlagsAsync) ; 
} 
catch(Exception err) 
{ 
throw(new Exception("发生一个错误:"+err.Message)) ; 
} 
} 

public void Stop() 
{ 
voice.Speak(string.Empty,SpeechLib.SpeechVoiceSpeakFlags.SVSFPurgeBeforeSpeak) ; 
} 

public void Pause() 

{ 
voice.Pause() ; 
} 

public void Continue() 
{ 
voice.Resume() ; 
} 
}//end class 

</div>



在 private SpeechLib.SpVoiceClass voice =null;这里,我们定义个一个用来发音的类,并且在第一次调用该类时,对它用BuildSpeach方法进行了初始化。

我们还定义了两个属性Volume和Rate,能够设置音量和语速。

我们知道,SpVoiceClass 有一个Speak方法,我们发音主要就是给他传递一个字符串,它负责读出该字符串,如下所示。

private void Speak(string strSpeack) 
{ 
try 
{ 
voice.Speak(strSpeack,SpeechVoiceSpeakFlags.SVSFlagsAsync) ; 
} 
catch(Exception err) 
{ 
throw(new Exception("发生一个错误:"+err.Message)) ; 
}
} 
</div>



第二种使用.NET类库和系统API的代码如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Speech.Synthesis;
using System.Speech;

namespace StudyBeta
{
  public class SRead
  {
    public SpeechSynthesizer synth; //语音合成对象
    public SRead()
    {
      synth = new SpeechSynthesizer();
    }
    public SRead(int m, int n)
    {
      //使用 synth 设置朗读音量 [范围 0 ~ 100]
      synth.Volume = m;
      //使用 synth 设置朗读频率 [范围 -10 ~ 10]
      synth.Rate = n;
    }
    public void SpeakChina(string ggg)
    {
      //SpVoice Voice = new SpVoice();
      synth.SelectVoice("Microsoft Lili");
      //Voice.Speak(ggg, SpFlags);
      synth.SpeakAsync(ggg);
      //String speechPeople = synth.Voice;
      //使用 synth 设置朗读音量 [范围 0 ~ 100]
      // synth.Volume = 80;
      //使用 synth 设置朗读频率 [范围 -10 ~ 10]
      //   synth.Rate = 0;
      //使用synth 合成 wav 音频文件:
      //synth.SetOutputToWaveFile(string path);
    }
    public void SpeakEnglish(string ggg)
    {
      //SpVoice Voice = new SpVoice();
      synth.SelectVoice("VW Julie");
      synth.Speak(ggg); //ggg为要合成的内容
    }
    public int m
    {
      get
      {
        return synth.Volume;
      }
      set
      {
        synth.Volume = value;
      }
    }
    public int n
    {
      get
      {
        return synth.Rate;
      }
      set
      {
        synth.Rate = value;
      }
    }
}


</div> </div>
分享到:QQ空间新浪微博腾讯微博微信百度贴吧QQ好友复制网址打印

您可能想查找下面的文章:

  • C#中调用SAPI实现语音合成的2种方法
  • C#中调用SAPI实现语音识别的2种方法

相关文章

  • 2017-05-28C#实现Base64处理的加密解密,编码解码示例
  • 2017-05-28Winform学生信息管理系统主页面设计(2)
  • 2017-05-28C#计算输入汉字GBK编码后十六进制数输出的方法
  • 2017-05-28C# 泛型的约束
  • 2017-05-28C#线性渐变画刷LinearGradientBrush用法实例
  • 2017-05-28C#远程发送和接收数据流生成图片的方法
  • 2017-05-28C#判断多个文本框是否为空的方法
  • 2017-05-28C#模式画刷HatchBrush用法实例
  • 2017-05-28浅谈c# 面向对象之类与对象
  • 2017-05-28C#环形队列的实现方法详解

文章分类

  • JavaScript
  • ASP.NET
  • PHP
  • 正则表达式
  • AJAX
  • JSP
  • ASP
  • Flex
  • XML
  • 编程技巧
  • Android
  • swift
  • C#教程
  • vb
  • vb.net
  • C语言
  • Java
  • Delphi
  • 易语言
  • vc/mfc
  • 嵌入式开发
  • 游戏开发
  • ios
  • 编程问答
  • 汇编语言
  • 微信小程序
  • 数据结构
  • OpenGL
  • 架构设计
  • qt
  • 微信公众号

最近更新的内容

    • C#自动给文章关键字加链接实现代码
    • .net的序列化与反序列化实例
    • Windows系统中使用C#编写蓝牙通信程序的简单实例
    • 使用C#给PDF文档添加注释的实现代码
    • 用 C# 编写一个停放在任务栏上的图标程序
    • 理解C#生成验证码的过程
    • C#中按字符串截取长字符串实例
    • C#实现WinForm捕获最小化事件的方法
    • C#实现12306自动登录的方法
    • C#入门之checked和unchecked的区别实例解析

关于我们 - 联系我们 - 免责声明 - 网站地图

©2020-2025 All Rights Reserved. linkedu.com 版权所有