C\#음성 기능 의 실현 방법
간단하게 네 가지 방법 을 말씀 드 리 겠 습 니 다.
낭독 시 사용
voice.Speak(string,SpeechVoiceSpeakFlags.SVSFlagsAsync);
일시 정지,사용
voice.Pause();
일시 정지 에서 방금 낭독 을 계속 하고 사용
voice.Resume();
정지 기능
voice.Speak(string.Empty, SpeechVoiceSpeakFlags.SVSFPurgeBeforeSpeak);
을 사용 하면'낭독','일시 정지','계속','정지'기능 을 온전 하 게 실현 할 수 있다.다음은 인 스 턴 스 코드 를 직접 드 리 겠 습 니 다.
private void button1_Click(object sender, EventArgs e)
{
Analyse(this.textBox1.Text);
}
public void Analyse(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 (Convert.ToInt32(chr) <= 122 && Convert.ToInt32(chr) >= 65)
{
int iLen = i - iCbeg;
string strValue =
strSpeak.Substring(iCbeg, iLen);
SpeakChina(strValue);
iEbeg = i;
IsChina = false;
}
}
else
{
if (Convert.ToInt32(chr) > 122 || Convert.ToInt32(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 SpeakChina(string speak)
{
voice = new SpVoice();
voice.Voice = voice.GetVoices(string.Empty, string.Empty).Item(3);// 3 ,024
voice.Speak(speak, SpeechVoiceSpeakFlags.SVSFDefault);
}
//
private void SpeakEnglishi(string speak)
{
voice = new SpVoice();
voice.Voice = voice.GetVoices(string.Empty, string.Empty).Item(0);// 3 ,024
voice.Speak(speak, SpeechVoiceSpeakFlags.SVSFDefault);
}
//
private void button2_Click(object sender, EventArgs e)
{
try
{
SpeechVoiceSpeakFlags SpFlags = SpeechVoiceSpeakFlags.SVSFlagsAsync;
SpVoice Voice = new SpVoice();
SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = "All files (*.*)|*.*|wav files (*.wav)|*.wav";
sfd.Title = "Save to a wave file";
sfd.FilterIndex = 2;
sfd.RestoreDirectory = true;
if (sfd.ShowDialog() == DialogResult.OK)
{
SpeechStreamFileMode SpFileMode = SpeechStreamFileMode.SSFMCreateForWrite;
SpFileStream SpFileStream = new SpFileStream();
SpFileStream.Open(sfd.FileName, SpFileMode, false);
Voice.AudioOutputStream = SpFileStream;
Voice.Speak(this.textBox1.Text, SpFlags);
Voice.WaitUntilDone(100);
SpFileStream.Close();
}
}
catch (Exception er)
{
MessageBox.Show("An Error Occured!", "SpeechApp", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}