diff options
author | Seoester <seoester@googlemail.com> | 2013-05-30 16:27:18 +0200 |
---|---|---|
committer | Seoester <seoester@googlemail.com> | 2013-05-30 16:27:18 +0200 |
commit | ec7645ffe3fe97db9f6d2efb249df47c624a418c (patch) | |
tree | 292872089443f1fecac139d0659044ee907036a2 /module/plugins/hoster | |
parent | Recreated StreamcloudEu plugin using XFileSharingPro (diff) | |
download | pyload-ec7645ffe3fe97db9f6d2efb249df47c624a418c.tar.xz |
StreamcloudEu plugin: MultiDL enabled
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/StreamcloudEu.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/module/plugins/hoster/StreamcloudEu.py b/module/plugins/hoster/StreamcloudEu.py index eee9b5d67..a041d917c 100644 --- a/module/plugins/hoster/StreamcloudEu.py +++ b/module/plugins/hoster/StreamcloudEu.py @@ -14,9 +14,13 @@ class StreamcloudEu(XFileSharingPro): HOSTER_NAME = "streamcloud.eu" DIRECT_LINK_PATTERN = r'file: "(https?://stor\d+\.streamcloud.eu:?\d*/.*/video\.mp4)",' + def setup(self): + XFileSharingPro.setup(self) + self.multiDL = True + def getDownloadLink(self): found = re.search(self.DIRECT_LINK_PATTERN, self.html, re.S) if found: - return found.group(1) + return found.group(1) return XFileSharingPro.getDownloadLink(self) |