The weird thing is, that KORE (Remote from an Android Phone) shows the correct item.
Name of the TV Station and, if provided the current Movie.
Maybe this should be raised on GitHub.
Thanks, i managed to get the Information i want by using a rule.
Now only the Radio Station is not configured Properly.
I want to get the Station, followed by the Artist / Song Name.
The information is provided by Kodi.
See the “Song Test” Entry below.
(Unknown Media Type=Radio Station(M3U)
For example a german radio station: http://www.wdr.de/wdrlive/media/einslive.m3u
Rules
rule "Print Song,Artist,Station and/or Title" when Item KodiLiving_Title changed or Item KodiLiving_Station changed or Item KodiLiving_Artist changed then if(KodiLiving_Type.state.toString=="song"){ KodiLiving_Song.postUpdate(KodiLiving_Artist.state.toString +" - "+ KodiLiving_Title.state.toString)} if(KodiLiving_Type.state.toString=="channel"){ KodiLiving_Channel.postUpdate(KodiLiving_Station.state.toString +" - "+ KodiLiving_Title.state.toString)} end
Not working: (M3U Radio Station+Title) if(KodiLiving_Type.state.toString=="unknown"){ KodiLiving_Unknown.postUpdate(KodiLiving_Station.state.toString +" - "+ "song TEST")}