I am currently building a media website using node js.
I would like to be able to control Kodi, which is installed of the server computer, remotely from the website browser.
How would I go about doing this? My first idea was
to simply see if I could somehow pipe the entire Kodi GUI into the browser such that the full program stays on the server
and just the GUI is piped to the browser, sending commands back to the server;
however, I could find little documentation on how to do that.
Second, I thought of making a script (eg Python) that would be able to control Kodi and just interface node js
with the Python script, but again,
I could find little documentation on that.
Any help would be much appreciated.
Thank You!