Kodi Community Forum
[Linux] kodivc - a program for controlling Kodi with simple voice commands - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116)
+--- Thread: [Linux] kodivc - a program for controlling Kodi with simple voice commands (/showthread.php?tid=123621)

Pages: 1 2 3 4 5 6 7


RE: [Linux] kodivc - a program for controlling Kodi with simple voice commands - shallyverma - 2016-08-30

Currently kodivc uses CMU Sphnix. Does it provide flexibility to use any other search engine? Can we port it to use other search engine. I have a automatic speech recoginition engine and i am thinking if i can use kodivc to test my engine.
Thanks


RE: [Linux] kodivc - a program for controlling Kodi with simple voice commands - Kempniu - 2016-08-30

Thanks for your interest. In its current form, kodivc is completely inflexible and is heavily focused on using CMU Sphinx as the engine. But if your speech recognition engine can produce limited vocabulary as its output, you are welcome to modify the program so that it uses your engine instead of CMU Sphinx. Pull requests are welcome, but unfortunately it is highly unlikely I will be able to work on such a feature personally due to lack of spare time.


RE: [Linux] kodivc - a program for controlling Kodi with simple voice commands - shallyverma - 2016-08-31

Thanks for your prompt reply. How is kodivc source code organised. Is the app code is directly tied up to CMU sphinx source code API to send and receive data to/from ASR engine OR is there any voice recognition abstraction defined which we can port over our ASR engine calls?

If I pull kodivc source code does it have any level of documentation in place which help me understand code flow?


RE: [Linux] kodivc - a program for controlling Kodi with simple voice commands - Kempniu - 2016-08-31

The whole source code is like 1,500 lines (with a lot of vertical whitespace), so the best you can do is see it for yourself (you can start here). This whole thing started out as a hack grown on sample code from the CMU Sphinx codebase and it more or less remained one until today. The source code is pretty heavily commented, but that's about it.


RE: [Linux] kodivc - a program for controlling Kodi with simple voice commands - shallyverma - 2016-08-31

ok.. are there any video tutorial available on how to use and run kodivc?


RE: [Linux] kodivc - a program for controlling Kodi with simple voice commands - Kempniu - 2016-08-31

No video tutorials, sorry, just read the docs.


RE: [Linux] kodivc - a program for controlling Kodi with simple voice commands - shallyverma - 2016-09-08

I see kodi JSON-RPC interface also support interaction with python which i see may be used to implement a native add-on to simulate kodivc .Is there any specific reason why you choose http interface for performing various actions than python interface?


RE: [Linux] kodivc - a program for controlling Kodi with simple voice commands - Kempniu - 2016-09-09

The most compelling one was that I did not know how to write a single line of Python code when I started kodivc Smile