2020-06-09, 08:36
If I play this radio-stream http://stream.srg-ssr.ch/drs3/aacp_96.m3u Kodi is able to show the current Played title. How could I get this data via JSON-RPC?
I tried following but I'm not able to get the title.
I tried following but I'm not able to get the title.
json:return {
payload:
{"jsonrpc": "2.0",
"method": "Player.GetItem",
"params": {
"playerid": msg.payload,
"properties": [
"title",
"originaltitle",
"description",
"fanart",
"thumbnail",
"albumlabel",
"album",
"showtitle"
],
},
"id": 2
}
};