From b033f508b50082b8516cecba511c91a47099e10c Mon Sep 17 00:00:00 2001 From: Nitzo Date: Wed, 10 Feb 2016 02:19:00 +0200 Subject: [SoundcloudCom] fix #2337 --- module/plugins/hoster/SoundcloudCom.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/module/plugins/hoster/SoundcloudCom.py b/module/plugins/hoster/SoundcloudCom.py index 854e98d54..9f942521f 100644 --- a/module/plugins/hoster/SoundcloudCom.py +++ b/module/plugins/hoster/SoundcloudCom.py @@ -9,7 +9,7 @@ from module.plugins.internal.misc import json class SoundcloudCom(SimpleHoster): __name__ = "SoundcloudCom" __type__ = "hoster" - __version__ = "0.15" + __version__ = "0.16" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?soundcloud\.com/[\w\-]+/[\w\-]+' @@ -21,7 +21,8 @@ class SoundcloudCom(SimpleHoster): __description__ = """SoundCloud.com hoster plugin""" __license__ = "GPLv3" - __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + __authors__ = [("Walter Purcaro", "vuolter@gmail.com" ), + ("GammaC0de" , "nitzo2001[AT]yahoo[DOT]com")] NAME_PATTERN = r'title" content="(?P.+?)"' @@ -39,7 +40,7 @@ class SoundcloudCom(SimpleHoster): client_id = re.search(r'"clientID":"(.+?)"', self.data).group(1) except Exception: - client_id = "b45b1aa10f1ac2941910a7f0d10f8e28" + client_id = "02gUJC0hH2ct1EGOcYXQIzRFU91c72Ea" #: Url to retrieve the actual song url html = self.load("https://api.soundcloud.com/tracks/%s/streams" % song_id, -- cgit v1.2.3