扩展 Android TTS 引擎
在android中现有的TTS引擎中添加新的语言,我可以修改现有的引擎而无需从头开始吗?由于语音合成框架已经完成,也许我可以根据该框架为我的语言实现 TTS,而不是采取不同的方法。
需要建议。
谢谢
Adding a new language to the existing TTS engine in android, May I modify the existing engine without starting from scratch? since the speech synthesis framework is somewhat done, maybe I can implement a TTS for my language according to that instead taking a different approach.
Need suggestions.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认的 Android TTS 引擎基于 Pico TTS。 Pico TTS 是开源的,位于 Android 树中的 external/svox 中。
请注意,可以使用其他语音引擎,例如 Ivona,请转到设置 ->语音和输入-> tts设置->发动机。
The default Android TTS engine is based on Pico TTS. The Pico TTS is open source, in external/svox in the Android tree.
Note that it is possible to use other speech engines such as Ivona, go to settings -> voice & input -> tts settings -> engines.
我认为你们误解了我的问题。我想使用 Android 上的默认 TTS 引擎为不存在 TTS 的语言构建 TTS。
看来事情并没有那么简单。当我问这个问题时,我对语音合成还没有清晰的想法。它需要放弃大量的工作和研究来做。为新语言构建 TTS 的最简单方法是使用“eSpeak”语音合成器。实现非常简单,由 eyes-free 项目移植到 Android 上。
i think you guys got my question wrong. i wanted to build a TTS for a language where there does not exist a TTS using the default TTS engine on android.
It seems it's not that simple. At the time i asked this question i did not have a clear idea on Speech Synthesis. It requires quit alot of work and research to do. The easiest method to build a TTS for a new language was to use the "eSpeak" speech synthesizer. The implementation is very simple and it is ported to android by the eyes-free project.