如何在非英语Win Vista Business上使用System.Speech

时间:2013-01-30 23:42:17

标签: c# .net-4.0 windows-vista speech-recognition system.speech.recognition

我想尝试语音识别来控制程序。我在C#中编写了测试程序,当我调试它时,每次都发生错误 -

System.Runtime.InteropServices.COMException (0x80004005): Calling part of COM return error HRESULT E_FAIL.* 
in System.Speech.Recognition.RecognizerBase.Initialize(SapiRecognizer recognizer, Boolean inproc)
in System.Speech.Recognition.SpeechRecognitionEngine.get_RecoBase()
in System.Speech.Recognition.SpeechRecognitionEngine.LoadGrammar(Grammar grammar)

看起来错误是由engine.LoadGrammar(new DictationGrammar());引起的 在我的笔记本上我安装了CZECH OS Vista,也许这就是语音识别语言与操作系统语言不同的问题。

有没有办法在非英语操作系统中使用system.speech进行开发,或者在某些步骤中我错了?语言没有问题,我喜欢用英语进行语音识别,但是,我无法获得英语Vista或MUI语言包。

完整代码如下。

非常感谢!

using System;
using System.Windows;
using System.Speech.Recognition;

namespace rozpoznani_reci_WPF
{
   public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

            SpeechRecognitionEngine engine = new SpeechRecognitionEngine();

            try
                {
                    engine.LoadGrammar(new DictationGrammar());
                    engine.SetInputToDefaultAudioDevice();
                    engine.SpeechRecognized += new EventHandler<SpeechRecognizedEventArgs>(recognizer_SpeechRecognized);
                }

            catch(Exception e)
                {
                    //MessageBox.Show(e.ToString());
                    textBox1.Text = e.ToString();
                 }
            }

        void recognizer_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
        {
            if (e.Result != null)
            {
                textBox1.Text = e.Result.Text + "  ";
            }
        }
      }
    }

1 个答案:

答案 0 :(得分:0)

根据DictationGrammar上的MSDN文档,无参数构造函数

  

为Windows桌面语音技术提供的默认听写语法初始化DictationGrammar类的新实例。

您的机器上是否有捷克语DicationGrammar课程?如果没有,则需要创建一个并使用其他构造函数DictationGrammar(String)并从URI加载一个。您也可以使用GrammarBuilder构建自己的版本,然后使用SpeechRecognizer.LoadGrammar()加载它。

您可能还会发现this link有用;这是从2008年开始,但你做了询问Vista。 : - )