Continuously recognize everything being said on Android?

孤者浪人 提交于 2019-12-06 17:45:28

If you want to recognize large vocabulary speech with Android you need "language model search". You can use generic language model for recognizing speech without constrains:

https://sourceforge.net/projects/cmusphinx/files/Acoustic%20and%20Language%20Models/US%20English%20Generic%20Language%20Model/

However, this would be pretty resource-intensive process and accuracy will not be great without specialization, you will have to prune the model to make it suitable for decoding on mobile. So your other choice is to stream audio to some server where you can recognize it with more powerful models or just use existing API for speech recognition which allows continuous decoding.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!