Push all old addons
Push of all my old addons that are possibly well broken...
This commit is contained in:
14
plugin.audio.rinsefm/addon.py
Normal file
14
plugin.audio.rinsefm/addon.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import sys
|
||||
import xbmcgui
|
||||
import xbmcplugin
|
||||
|
||||
addon_handle = int(sys.argv[1])
|
||||
|
||||
xbmcplugin.setContent(addon_handle, 'movies')
|
||||
|
||||
url = 'http://podcast.dgen.net:8000/rinseradio.m3u'
|
||||
li = xbmcgui.ListItem('Rinse.FM', iconImage='http://in-reach.co.uk/wp-content/uploads/2014/02/rinse-fm-logo-620x400.png', thumbnailImage='http://in-reach.co.uk/wp-content/uploads/2014/02/rinse-fm-logo-620x400.png')
|
||||
li.setProperty('fanart_image', 'http://in-reach.co.uk/wp-content/uploads/2014/02/rinse-fm-logo-620x400.png')
|
||||
xbmcplugin.addDirectoryItem(handle=addon_handle, url=url, listitem=li)
|
||||
|
||||
xbmcplugin.endOfDirectory(addon_handle)
|
||||
Reference in New Issue
Block a user