良い一日!Microsoft Server Speech SDK v11.0(サーバー版)についてです。
MSDN sampleでテスト例を実行しました。そのため、英語のフレーズ - 赤、青 - はよく認識されました。しかし、ロシア語も認識したい - Microsoft Speech Recognition Language -TELE (ru-RU) をインストールしてアプリを実行する/
コード:
static void DoWork()
{
Thread.CurrentThread.CurrentCulture = new CultureInfo("ru-RU");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("ru-RU");
// Create a new SpeechRecognitionEngine instance.
SpeechRecognitionEngine sre = new SpeechRecognitionEngine();
// Configure the input to the recognizer.
sre.SetInputToWaveFile(@"c:\Test\красный.wav");
// Create a simple grammar that recognizes "red", "green", or "blue".
Choices colors = new Choices();
// colors.Add(new string[] { "red", "green", "blue","красный" });
colors.Add(new string[] { "красный" }); //russian word- "red"
// Create a GrammarBuilder object and append the Choices object.
GrammarBuilder gb = new GrammarBuilder();
gb.Culture = new CultureInfo("ru-RU"); // add Culture Info
gb.Append(colors);
Console.WriteLine(gb.Culture.CultureTypes);
// Create the Grammar instance and load it into the speech recognition engine.
Grammar g = new Grammar(gb);
sre.LoadGrammar(g);
// Register a handler for the SpeechRecognized event.
sre.SpeechRecognized +=
new EventHandler<SpeechRecognizedEventArgs>(sre_SpeechRecognized);
// Start recognition.
sre.Recognize();
}
// Create a simple handler for the SpeechRecognized event.
static void sre_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
{
Console.WriteLine(String.Format("Speech recognized: {0}",e.Result.Text));
}
次の行にエラーが表示されます。
sre.LoadGrammar(g);
The language for the grammar does not match the language of the speech recognizer.
では、このエラーを修正するにはどうすればよいでしょうか。CultureInfo を設定しようとしましたが、うまくいきません... ありがとうございます。