WinFX

SpeechRecognitionEngine

昨日は音声合成だったので、今度は音声認識を試してみました。マイクからの入力を認識してコンソールに出力します。「quit」と言えば終了です。 using System; using System.Speech.Recognition; using System.Speech.Synthesis; static class Program { sta…

System.Speech.Synthesis

思いつきでWinFXのSpeech系クラスを弄ってみました。まず、Speech SDK 5.1が必要なのでダウンロードしておきます。で、 using System; using System.Globalization; using System.Speech.Synthesis; static class Program { static void Main () { SpeechSyn…