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;
}
}
}