Posts: 34
Joined: Nov 2015
Reputation:
0
Thanks sofaking for providing this addon. Radio is still well alive!
I tried the addon today the first time on a Raspberry Pi 3 with LibreElec 9.2.0 and Kodi 18.5
The live station OE1 worked well. But when I tried to listen to a past program from the Radiothek of OE1 and clicked the entry, there was no sound coming. The screen returned to the same list within a second.
ORF TVthek works well on the same Raspberry Pi.
Any idea what I could do to get the Radiothek 7 days to work?
Posts: 49
Joined: Nov 2020
Reputation:
0
Since beginning of 2020 I was searching for a solution to get OE1DD back. By accident I started to work with kodi (to get a nice picture viewer within my living room). Additionally kodi resolved my problems with internetradio (vtuner & Denon). Maybe it could also bring back OE1DD? I searched for a long time and finally found a solution for me with a strm file.
But you have it already within your addon! Thanks a lot for that. Maybe a small suggestion: enhance your description of your addon to include that it also supports 5.1 reception of OE1DD - then I'd have given it a try earlier.
Posts: 49
Joined: Nov 2020
Reputation:
0
Just yesterday I was glad that your addon also supports access to the Ö1 radiothek. Thus I could listen to the complete cabaret program! But from my perspective it was difficult to browse the list of podcast entries. Since I didn't know the precise titel I had to scroll through the whole list. Is it somehow possible to sort the presented lists in an alphabetical order? I couldn't find a corresponding option.
And there seems to be a minor bug (probabely within core kodi): I've added Ö1DD into kodi's favourites. Thus I can jump quickly to its stream. Works great, but the "now playing text" contains a set of % chars instead of the intended (fixed) text. When starting O1DD from within your addon itself the propper string is shown. Of course best thing would be to get the current playing title. But I assume that this info simply is not embedded within the Ö1DD stream.
Posts: 88
Joined: Mar 2013
Reputation:
12
hi rsmi,
you have to call the player with the addon url. there are no fixed urls for the livestreams but you can figure those out checking the log when you play a station manually. to start oe3 for example you can use this curl command
curl -s -H 'Content-Type: application/json' -d '{"jsonrpc": "2.0", "method": "Player.Open", "params": {"item": { "file" : "plugin://plugin.audio.radiothek/?link=https%3A%2F%2Forf-live-oe3.mdn.ors.at%2Fout%2Fu%2Foe3%2Fq3a%2Fmanifest.m3u8&mode=play&label=Hitradio"}}, "id": 1}'
or with this json string if you are using something else to send the data
{
"jsonrpc":"2.0",
"method":"Player.Open",
"params":{
"item":{
"file":"plugin://plugin.audio.radiothek/?link=https%3A%2F%2Forf-live-oe3.mdn.ors.at%2Fout%2Fu%2Foe3%2Fq3a%2Fmanifest.m3u8&mode=play&label=Hitradio"
}
},
"id":1
}
Posts: 3
Joined: Feb 2024
Reputation:
0
Thank you,
Yes, the json string works - kodi plays the stream. But it's a different behaviour as the start directly via the Kodi-Addon, so Kodi for example shows no station logo. Can this be handled in any way too ?
many greetings
Posts: 3
Joined: Feb 2024
Reputation:
0
This version I have already tested, but every time this commands are executed with the "Input.Down" the next station in the folder will be selected. Seems the last played will be reminded in any way.
... I will try a few more things.