summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Christopher <4Christopher@gmx.de> 2013-03-11 18:06:54 +0100
committerGravatar Christopher <4Christopher@gmx.de> 2013-03-11 18:06:54 +0100
commit06a3224eb877640127d37f9497a2f1f2379b035b (patch)
tree5b6fc76c3c4fac26db1c23389e52e90b6d7ec4f3 /module
parentFshareVn: Fixed error on premium downloads. Location header not catched. See ... (diff)
downloadpyload-06a3224eb877640127d37f9497a2f1f2379b035b.tar.xz
wrote crypter plugin for chip.de/videos
Diffstat (limited to 'module')
-rw-r--r--module/plugins/crypter/ChipDe.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/module/plugins/crypter/ChipDe.py b/module/plugins/crypter/ChipDe.py
new file mode 100644
index 000000000..955d731b2
--- /dev/null
+++ b/module/plugins/crypter/ChipDe.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+import re
+from module.plugins.Crypter import Crypter
+
+class ChipDe(Crypter):
+ __name__ = "ChipDe"
+ __type__ = "container"
+ __pattern__ = r"http://(?:www\.)?chip.de/video/.*\.html"
+ __version__ = "0.1"
+ __description__ = """Chip.de Container Plugin"""
+ __author_name__ = ('4Christopher')
+ __author_mail__ = ('4Christopher@gmx.de')
+
+ def decrypt(self, pyfile):
+ # self.package = pyfile.package()
+ self.html = self.load(pyfile.url)
+ try:
+ url = re.search(r'"(http://video.chip.de/\d+?/.*)"', self.html).group(1)
+ self.logDebug('The file URL is %s' % url)
+ except:
+ self.fail('Failed to find the URL')
+
+ self.packages.append((self.pyfile.package().name, [ url ], self.pyfile.package().folder))