diff options
Diffstat (limited to 'pyload/plugin/hoster/StreamcloudEu.py')
-rw-r--r-- | pyload/plugin/hoster/StreamcloudEu.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/pyload/plugin/hoster/StreamcloudEu.py b/pyload/plugin/hoster/StreamcloudEu.py new file mode 100644 index 000000000..cdf244539 --- /dev/null +++ b/pyload/plugin/hoster/StreamcloudEu.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- + +import re + +from pyload.plugin.internal.XFSHoster import XFSHoster + + +class StreamcloudEu(XFSHoster): + __name = "StreamcloudEu" + __type = "hoster" + __version = "0.10" + + __pattern = r'http://(?:www\.)?streamcloud\.eu/\w{12}' + + __description = """Streamcloud.eu hoster plugin""" + __license = "GPLv3" + __authors = [("seoester", "seoester@googlemail.com")] + + + WAIT_PATTERN = r'var count = (\d+)' + + LINK_PATTERN = r'file: "(http://(stor|cdn)\d+\.streamcloud\.eu:?\d*/.*/video\.(mp4|flv))",' + + + def setup(self): + self.multiDL = True + self.chunkLimit = 1 + self.resumeDownload = self.premium |