summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/hoster/MegavideoCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugin/hoster/MegavideoCom.py')
-rw-r--r--pyload/plugin/hoster/MegavideoCom.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/pyload/plugin/hoster/MegavideoCom.py b/pyload/plugin/hoster/MegavideoCom.py
new file mode 100644
index 000000000..f50ce4365
--- /dev/null
+++ b/pyload/plugin/hoster/MegavideoCom.py
@@ -0,0 +1,17 @@
+# -*- coding: utf-8 -*-
+
+from pyload.plugin.internal.DeadHoster import DeadHoster
+
+
+class MegavideoCom(DeadHoster):
+ __name = "MegavideoCom"
+ __type = "hoster"
+ __version = "0.21"
+
+ __pattern = r'http://(?:www\.)?megavideo\.com/\?.*&?(d|v)=\w+'
+ __config = []
+
+ __description = """Megavideo.com hoster plugin"""
+ __license = "GPLv3"
+ __authors = [("jeix", "jeix@hasnomail.de"),
+ ("mkaay", "mkaay@mkaay.de")]