0
A
回答
1
我建議使用谷歌API的文本到語音的完美免費的Windows Phone 8和它的偉大工程:
你可以找到如何在這裏做到這一點: How can I use google text to speech api in windows form?
當然這個需求互聯網連接和開源的NAudio!
谷歌的工作最適合我
如果你想脫機選項,您可能會感興趣的: http://www.codeproject.com/Articles/483347/Speech-recognition-speech-to-text-text-to-speech-a
http://www.codeproject.com/Articles/380027/Csharp-Speech-to-Text
2
Just use the services out of the box
private async void ButtonSR_Click(object sender, RoutedEventArgs e)
{
// Create an instance of SpeechRecognizerUI.
this.recoWithUI = new SpeechRecognizerUI();
// Start recognition (load the dictation grammar by default).
SpeechRecognitionUIResult recoResult = await recoWithUI.RecognizeWithUIAsync();
// Do something with the recognition result.
MessageBox.Show(string.Format("You said {0}.", recoResult.RecognitionResult.Text));
}
相關問題
- 1. 語音到Windows Phone上的文本/語音識別
- 2. 語音識別 - Windows phone
- 3. Windows Phone上的語音識別 - 語音轉文本
- 4. 找不到Windows Phone 8語音識別參考
- 5. 在Windows 8.1和Windows Phone 8中的語音識別
- 6. 語音識別和文本到語音
- 7. 語音到文本識別
- 8. 在Windows Phone 8的後臺代理中的語音識別API
- 9. 呼叫中的語音識別:Windows Phone 8
- 10. 文本到語音(語音生成)和語音到文本(語音識別)API?
- 11. Windows Phone 8/8.1後臺任務中的文本到語音(TTS)?
- 12. windows phone 7中的文本到語音
- 13. Windows 8語音文本和文本到語音API
- 14. 語音到文字/語音識別
- 15. 直接從音頻/轉錄語音到文本(語音識別)
- 16. Windows語音識別C#
- 17. Windows Phone 8:CSS方向不被識別
- 18. System.UnauthorizedAccessException在Windows Phone 8中使用文本轉語音功能
- 19. windows phone 7.5上的音樂識別Mango
- 20. 語音識別(語音到文本 - STT科爾多瓦插件)
- 21. 在使用文本到語音之前停止語音識別
- 22. Android:語音到文本和語音識別離線
- 23. Clojure提供哪些文本到語音和語音識別庫?
- 24. 語音識別 - 語音到文本 - 用於BlackBerry OS 7
- 25. 是否有任何Windows 8語音到文本和文本到語音API?
- 26. 在windows phone 8語音合成器
- 27. Windows Phone 8上的語音命令
- 28. 異常HRESULT:0x800455BC在Windows手機的語音識別8
- 29. windows phone 8 TTS - 如何將語音保存到wav文件
- 30. 文本到語音和語音到文本識別 - >自我 - 識別正在發生
謝謝,但需要互聯網連接。我在尋找離線選項:) –