Kodi Community Forum

Full Version: Addon to voice control Kodi
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, i'm a computer engineering student and at my uni i got the project to develop a complete voice assistant to control kodi. I already developed everything and now i'm trying to create the real addon but i'm facing various problem. For the proj i'm using DeepSpeech and Spacy for the nlu but i haven't figure it out how i can include this two module inside the python environment in kodi. Does anyone can help me?
i'm not familiar with those modules, but if they are pure python modules, you can include them in your addon.
but in case they have c++ bindings then it would be a lot more complicated.
(2019-02-06, 21:31)ronie Wrote: [ -> ]i'm not familiar with those modules, but if they are pure python modules, you can include them in your addon.
but in case they have c++ bindings then it would be a lot more complicated.
 Yes that's the problem they are not pure py modueles and them also have lots of dependencies.
No one can help? Also a link to a guide would be helpful.
(2019-02-13, 11:02)mat656 Wrote: [ -> ]No one can help? Also a link to a guide would be helpful.
 Before you can create the modules you'll have to bind the binary code to Kodis core code first. ie Deepspeech is not 100% python. Correct me if I'm wrong, it's also not cross-platform supported? Which will further complicate things...

Maybe this will help... https://realpython.com/python-speech-rec...on-package
BTW you might be interested in https://kodi.wiki/view/Google_Summer_of_Code/2019
(2019-02-15, 00:02)Lunatixz Wrote: [ -> ]
(2019-02-13, 11:02)mat656 Wrote: [ -> ]No one can help? Also a link to a guide would be helpful.
 Before you can create the modules you'll have to bind the binary code to Kodis core code first. ie Deepspeech is not 100% python. Correct me if I'm wrong, it's also not cross-platform supported? Which will further complicate things...

Maybe this will help... https://realpython.com/python-speech-rec...on-package
BTW you might be interested in https://kodi.wiki/view/Google_Summer_of_Code/2019

I seem to understand, but how you install this new library in kodi ? and then use it ?... Note I know how to do Phyton programming