0

c#/xaml を使用して Windows Phone 8 アプリを開発しています。私は基本的に音声をテキストに変換してテキストボックスに保存しようとしています。音声入力は通常の英語になります。しかし、そのためには、文法ファイル全体を作成する必要があると思います。既製のものはありますか、それとも何か不足していますか。助けてください

private async void record_Click(object sender, EventArgs e)
    {
        // Begin recognition using the default grammar and store the result.
        SpeechRecognitionUIResult recoResult = await recoWithUI.RecognizeWithUIAsync();
        recoWithUI.Recognizer.Grammars.AddGrammarFromPredefinedType("message", SpeechPredefinedGrammar.Dictation);
        await this.recoWithUI.Recognizer.PreloadGrammarsAsync(); 

        // Check that a result was obtained
        if (recoResult.RecognitionResult != null)
        {
            // Determine if the user wants to save the note.
            var result = MessageBox.Show(string.Format("Heard you say \"{0}\" Save?", recoResult.RecognitionResult.Text), "Confirmation", MessageBoxButton.OKCancel);

            // Save the result to the Azure Mobile Service DB if the user is satisfied.
            if (result == MessageBoxResult.OK)
            {
                voicetext.Text = recoResult.RecognitionResult.Text;
            }
        }
    }
4

2 に答える 2

1

文法を認識エンジンにロードない場合は、定義済みの短いメッセージのディクテーション文法が取得されます。

  // Load the pre-defined dictation grammar by default
  // and start recognition.
  SpeechRecognitionUIResult recoResult = await recoWithUI.RecognizeWithUIAsync();

  // Do something with the recognition result
  MessageBox.Show(string.Format("You said {0}.", recoResult.RecognitionResult.Text));
于 2013-11-04T18:29:41.047 に答える