- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
Speach.cs
资源名称:speech.rar [点击查看]
上传用户:cookies0
上传日期:2022-07-28
资源大小:284k
文件大小:4k
源码类别:
语音合成与识别
开发平台:
Visual C++
- using System;
- using System.Collections.Generic;
- using System.Text;
- using SpeechLib;
- namespace tryreco
- {
- class Speach
- {
- private static Speach _Instance = null;
- private SpeechLib.SpVoiceClass voice = null;
- public 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(3);
- }
- 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;
- }
- }
- }
- 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();
- }
- }
- }