diff options
author | Stefano <l.stickell@yahoo.it> | 2013-04-16 21:00:34 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-04-16 21:00:34 +0200 |
commit | 75abe40812b481481fe9e2fd0bfbd7c49704b15b (patch) | |
tree | fc4c367da4544be474c315fbc8a99d3a3e753858 /module | |
parent | Merge pull request #79 from 4Christopher/stable (diff) | |
parent | DownloadVimeoCom: Fixed regular expression. (diff) | |
download | pyload-75abe40812b481481fe9e2fd0bfbd7c49704b15b.tar.xz |
Merge pull request #84 from 4Christopher/stable-DownloadVimeoCom
Wrote DownloadVimeoCom.
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/crypter/DownloadVimeoCom.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/module/plugins/crypter/DownloadVimeoCom.py b/module/plugins/crypter/DownloadVimeoCom.py new file mode 100644 index 000000000..88310915b --- /dev/null +++ b/module/plugins/crypter/DownloadVimeoCom.py @@ -0,0 +1,30 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import re +import HTMLParser +from module.plugins.Crypter import Crypter + +class DownloadVimeoCom(Crypter): + __name__ = 'DownloadVimeoCom' + __type__ = 'crypter' + __pattern__ = r'(?:http://vimeo\.com/\d*|http://smotri\.com/video/view/\?id=.*)' + ## The download from dailymotion failed with a 403 + __version__ = '0.1' + __description__ = """Video Download Plugin based on downloadvimeo.com""" + __author_name__ = ('4Christopher') + __author_mail__ = ('4Christopher@gmx.de') + BASE_URL = 'http://downloadvimeo.com' + + def decrypt(self, pyfile): + self.package = pyfile.package() + html = self.load('%s/generate?url=%s' % (self.BASE_URL, pyfile.url)) + h = HTMLParser.HTMLParser() + try: + f = re.search(r'cmd quality="(?P<quality>[^"]+?)">\s*?(?P<URL>[^<]*?)</cmd>', html) + except: + self.logDebug('Failed to find the URL') + else: + url = h.unescape(f.group('URL')) + self.logDebug('Quality: %s, URL: %s' % (f.group('quality'), url)) + self.packages.append((self.package.name, [url], self.package.folder)) |