【发布时间】:2013-05-29 03:20:28
【问题描述】:
请看下面的代码sn-p
using System.IO;
MemoryStream stream = new MemoryStream();
SpeechSynthesizer s = new SpeechSynthesizer();
s.setOutputToWaveStream(stream);
s.Speak("hello world");
SpeechRecognitionEngine e = new SpeechRecognitionEngine(new System.Globalization.CuntureInfo("en-US");
//Set grammar code goes here
e.SetInputToWaveStream(stream);
当它到达e.SetInputToWaveStream(stream); 时,它会抛出错误System.FormatException: Wave file not valid
这里有什么问题?
【问题讨论】:
标签: c# .net visual-studio-2010 speech-recognition formatexception