如何在Windows 10 UWP中正确实现语音识别

时间:2017-07-11 20:51:16

标签: c# uwp windows-10 speech-recognition speech-to-text

到目前为止,我还没有在微软的网站上找到语音识别示例。我也查看了这个网站 - https://mtaulty.com/2016/02/08/text-to-speech-and-more-with-windows-10-uwp-project-oxford/,我尝试使用给出的示例,但仍然无法正常工作。发生的事情是SpeechRecognitionConfidence遭到拒绝(它没有拿起我说的话)。在你问之前,是的我有一个正常工作的麦克风,所有内容都在设置中启用。

我在这里缺少一些简单的东西吗?

如果您不太了解我的问题,请滚动到我上面链接的页面底部,用户nhwilly1011也遇到了我遇到的问题。

async void Button_Click_2(object sender, RoutedEventArgs e)
    {
        this.recognizer = new SpeechRecognizer();
        await this.recognizer.CompileConstraintsAsync();

        this.recognizer.Timeouts.InitialSilenceTimeout = TimeSpan.FromSeconds(5);
        this.recognizer.Timeouts.EndSilenceTimeout = TimeSpan.FromSeconds(20);

        this.recognizer.UIOptions.AudiblePrompt = "Say whatever you like, I'm listening";
        this.recognizer.UIOptions.ExampleText = "The quick brown fox jumps over the lazy dog";
        this.recognizer.UIOptions.ShowConfirmation = true;
        this.recognizer.UIOptions.IsReadBackEnabled = true;
        this.recognizer.Timeouts.BabbleTimeout = TimeSpan.FromSeconds(5);

        var result = await this.recognizer.RecognizeWithUIAsync();

        if (result != null)
        {
            StringBuilder builder = new StringBuilder();

            builder.AppendLine(
              $"I have {result.Confidence} confidence that you said [{result.Text}] " +
              $"and it took {result.PhraseDuration.TotalSeconds} seconds to say it " +
              $"starting at {result.PhraseStartTime:g}");

            var alternates = result.GetAlternates(10);

            builder.AppendLine(
              $"There were {alternates?.Count} alternates - listed below (if any)");

            if (alternates != null)
            {
                foreach (var alternate in alternates)
                {
                    builder.AppendLine(
                      $"Alternate {alternate.Confidence} confident you said [{alternate.Text}]");
                }
            }
            this.txtResults.Text = builder.ToString();
        }
    }
    SpeechRecognizer recognizer;

我也尝试过微软的例子,它也不起作用 -

    private async void Button_Click_1(object sender, RoutedEventArgs e)
    {
        // Create an instance of SpeechRecognizer.
        var speechRecognizer = new Windows.Media.SpeechRecognition.SpeechRecognizer();

        //// Listen for audio input issues.
        //speechRecognizer.RecognitionQualityDegrading += speechRecognizer_RecognitionQualityDegrading;

        // Add a web search grammar to the recognizer.
        var webSearchGrammar = new Windows.Media.SpeechRecognition.SpeechRecognitionTopicConstraint(Windows.Media.SpeechRecognition.SpeechRecognitionScenario.WebSearch, "webSearch");


        speechRecognizer.UIOptions.AudiblePrompt = "Say what you want to search for...";
        speechRecognizer.UIOptions.ExampleText = @"Ex. 'weather for London'";
        speechRecognizer.Constraints.Add(webSearchGrammar);


        // Compile the constraint.
        await speechRecognizer.CompileConstraintsAsync();

        // Start recognition.
        Windows.Media.SpeechRecognition.SpeechRecognitionResult speechRecognitionResult = await speechRecognizer.RecognizeWithUIAsync();
        await speechRecognizer.RecognizeWithUIAsync();

        // Do something with the recognition result.
        var messageDialog = new Windows.UI.Popups.MessageDialog(speechRecognitionResult.Text, "Text spoken");
        await messageDialog.ShowAsync();
    }

3 个答案:

答案 0 :(得分:3)

我找到了答案。我的计算机没有启用Cortana,所以我最初没有收到错误消息。使用具有Cortana的计算机后,我能够发现我正在使用的网络存在问题。切换网络后,一切都按预期工作。我的错误是语音识别错误:"无法访问网络"它通过切换到不安全的WiFi连接来修复。

答案 1 :(得分:1)

如果我错过了某些内容,请更正我,但在致电CompileConstraintsAsync之前,建议您将SpeechRecognitionTopicConstraint添加到SpeechRecognizer的约束集合中。 我发现这是一个有用的步骤,here

答案 2 :(得分:0)

您可以在这里找到 Windows.Media.SpeechRecognition 的唤醒词语音识别

    public MAINPage()
            {
     this.InitializeComponent();
    this.Loaded += OnLoaded;
    
    } 
Windows.Media.SpeechRecognition.SpeechRecognizer recognizer;
    public async void OnLoaded(object sender, RoutedEventArgs args)
            {
                this.recognizer = new SpeechRecognizer();
    
                var commands = new Dictionary<string, int>()
                { 
                    [Constants.WAKEUP_INIT_WORD] = -90, //define your start word
                    [Constants.WAKEUP_STOP_WORD] = 90 //define your stop word
                };
    
                this.recognizer.Constraints.Add(new SpeechRecognitionListConstraint(
                  commands.Keys));
    
                await this.recognizer.CompileConstraintsAsync();
    
                this.recognizer.ContinuousRecognitionSession.ResultGenerated +=
                  async (s, e) =>
                  {
                      if ((e.Result != null) && (commands.ContainsKey(e.Result.Text)))
                      {
                          await this.Dispatcher.RunAsync(CoreDispatcherPriority.Normal,
                    () =>
                        {
                            
                            //e.Result.Confidence
                            double confidence = e.Result.RawConfidence;
                            if (e.Result.Confidence == SpeechRecognitionConfidence.Medium || e.Result.Confidence == SpeechRecognitionConfidence.High || confidence >0.85)
                            {
                                if (e.Result.Text == Constants.WAKEUP_INIT_WORD)
                                {
                                    recordButton_Click(sender, args);
                                    stopRecordButton.IsEnabled = true;
                                    recordButton.IsEnabled = false;
    
                                }
                                if (e.Result.Text == Constants.WAKEUP_STOP_WORD)
                                {
                                    stopRecordButton_Click(sender, args);
                                    recordButton.IsEnabled = true;
                                    stopRecordButton.IsEnabled = false;
                                }
                            }
    
                        }
                  );
                          this.recognizer.ContinuousRecognitionSession.Resume();
                      }
                  };
    
                await this.recognizer.ContinuousRecognitionSession.StartAsync(
                  SpeechContinuousRecognitionMode.PauseOnRecognition);
            }
enter code here

这里有更多品种https://mtaulty.com/2016/02/08/text-to-speech-and-more-with-windows-10-uwp-project-oxford/