2015-12-02, 09:58
2.0.4
- Dutch (thx 2 steefdw)
(2015-12-02, 13:34)ThaProZac Wrote: Any good ideas to what I can try to get this to work? Running out of ideas, and the shield is awsome, exept this one thing dosn't work
(2015-12-02, 21:46)orlaithshusband Wrote: was wondering how can i download songs from soundcloud
also how do i become an addon developer
thanks
(2015-12-02, 14:38)bromix Wrote:(2015-12-02, 13:34)ThaProZac Wrote: Any good ideas to what I can try to get this to work? Running out of ideas, and the shield is awsome, exept this one thing dosn't work
Sorry...I've no idea what is causing this. Sadly no shield here to test this
callback('plugin://plugin.audio.soundcloud/play/?audio_id=' + videoId);
(2015-04-02, 16:51)bromix Wrote:(2015-04-02, 16:34)teemue Wrote: I have signed up to SoundCloud using Google+, is there a way to use this account when signing in in this addon?Nope - only pure/basic login.
(2016-07-09, 23:07)Hwesta Wrote: is the source code repo available? The link from http://kodi.wiki/view/Add-on:SoundCloud to https://github.com/bromix/plugin.audio.soundcloud gives a 404, and I'd be interested in adding support if it was available.
import xbmc
xbmcplugin.setResolvedUrl(context.get_handle(), succeeded=True, listitem=kodi_item)
xbmc.executebuiltin('ActivateWindow(Visualisation)')
def process_item(context, item, resolve=False):
kodi_item = create_kodi_item(context, item)
if item['type'] == 'uri' or resolve:
xbmcplugin.setResolvedUrl(context.get_handle(), succeeded=True, listitem=kodi_item)
xbmc.executebuiltin('ActivateWindow(Visualisation)')
pass
else:
if not xbmcplugin.addDirectoryItem(handle=context.get_handle(), url=item['uri'], listitem=kodi_item,
isFolder=(item['type'] == 'folder')):
raise ProviderException('Failed to add folder item')
pass
pass