Chrome TTS,Google TTS,Cloud Speech API和Android TTS有什么区别?

时间:2016-11-26 15:58:02

标签: android google-chrome-extension text-to-speech google-text-to-speech google-cloud-speech

Chrome TTS:https://developer.chrome.com/apps/tts

Google TTS:https://play.google.com/store/apps/details?id=com.google.android.tts&hl=en

Cloud Speech API:https://cloud.google.com/speech/

Android TTS:https://developer.android.com/reference/android/speech/tts/TextToSpeech.html

我确定可能还有更多我遗失的东西。最终,我想弄清楚引擎背后是什么"好的Google",看看这项技术是否存在于云端。弄清楚谷歌产品之间的差异将是一个良好的开端。

1 个答案:

答案 0 :(得分:3)

“Cloud Speech API”是唯一一个将语音转换为文本的人。所有其他人都将文本转换为语音。

“Chrome TTS”适用于Chrome浏览器,“Android TTS”是在Android应用和“Google中使用文字转语音的API TTS“是一个TTS引擎,可以通过”Android TTS“ API使用。

  

最终我想弄清楚“Okay Google”背后的引擎是什么,   并了解该技术是否存在于云端。

然后查看SpeechRecognizer文档。

SpeechRecognizer文档说:

  

此API的实现可能会将音频流式传输到远程   服务器执行语音识别。因此,这个API不是   旨在用于连续识别,这将消耗一个   大量的电池和带宽。

因此它可能仍然需要并使用互联网访问,而不是完全“脱离云”。