Squeezebox remote for kodi
#1
Hi,

there is one great squeezebox controller with display from which would be perfect to control kodi so you don't have to use your phone.

Image

So the app was created when kodi was in version 10 and now the json stuff doesn't work. Can someone of the developers help me with this. I think the fact is that kodi has stopped using web server API and is now using JSON.

Sample:
Code:
--Get the currently playing info from the XBMC
function getCurrentlyPlayingInfo(self)
    local http = SocketHttp(jnt, settings["xbmc_ip_address"], settings["xbmc_port"], "xbmc")    
    local req = RequestHttp( function(chunk, err)
            if chunk then
                parseCurrentlyPlayingInfo(self, chunk)                                    --Parse the recieved info
            end
        end,
        'GET',
        '/xbmcCmds/xbmcHttp?command=GetCurrentlyPlaying')
    http:fetch(req)
end

Full app is available here for download.
xbmccontroller

Tnx.
Reply

Logout Mark Read Team Forum Stats Members Help
Squeezebox remote for kodi0