how to update an addon that someone built for me
#1
Hi,

I am wondering how I can update an add on that someone did for me? ( https://kodi.tv/addon/music-add-ons-scri...ream-radio )  I want to update the stream url and the description, if this possible?

They have not logged on since 2015 and I am unable to get in contact with them ( https://forum.kodi.tv/member.php?action=...uid=103929 )


Thanks


Justin
Reply
#2
sure, if you know your way around python feel free to fix the addon and submit it to our repo.
https://kodi.wiki/view/Submitting_Add-ons

keep in mind that all addons require python3 compatibility now, so it'll likely be a bit more involved than only updating the stream url.
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#3
https://kodi.wiki/view/Add-on:Radio-Browser.info
Sonic Stream Radio
Reply
#4
the only thing i can see that is out of date is 
 <import addon="xbmc.python" version="
update this to <import addon="xbmc.python" version="2.25.0"/>

import xbmc
URL = 'http://cloudrad.io/sonicstream/listen.pls'

def Play():
    pl = xbmc.PlayList(xbmc.PLAYLIST_MUSIC)
    pl.clear()    
    pl.add(URL)
    xbmc.Player().play(pl)

Play()


URL = 'http://cloudrad.io/sonicstream/listen.pls'
[playlist]
numberofentries=1
File1=http://144.217.233.86:80/
Length1=-1
version=2

http://144.217.233.86Current Stream InformationServer Status:Server is currently up and public.Stream Status:Stream is up at 128 kbps with 0 of 50 listeners (0 unique)Listener Peak:10Average Listen Time:15m 01sStream Title:Cutting Edge MusicContent Type:audio/mpegStream Genre:ElectronicaStream URL:www.sonicstreamradio.netStream ICQ: Stream AIM: Stream IRC: Current Song:Sonic Stream Radio - Frenchie @ The VIP Lounge... Reloaded
Reply

Logout Mark Read Team Forum Stats Members Help
how to update an addon that someone built for me0