aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/videoweed.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-04-05 20:05:47 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-04-05 20:05:47 +0200
commit2a9e1e453ac1543426637d45bd59afe2783dc923 (patch)
tree9753d59c71bb55e537d1bfbe5900a4ebdb09d328 /youtube_dl/extractor/videoweed.py
parentee1e199685fd7cc1161bc321b7cab6efa7afc295 (diff)
parent17c5a0077463240ec37aa6275ad65b6b0f79efeb (diff)
Merge branch 'master' of github.com:rg3/youtube-dl
Diffstat (limited to 'youtube_dl/extractor/videoweed.py')
-rw-r--r--youtube_dl/extractor/videoweed.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/youtube_dl/extractor/videoweed.py b/youtube_dl/extractor/videoweed.py
new file mode 100644
index 000000000..4a08ddd43
--- /dev/null
+++ b/youtube_dl/extractor/videoweed.py
@@ -0,0 +1,26 @@
+from __future__ import unicode_literals
+
+from .novamov import NovaMovIE
+
+
+class VideoWeedIE(NovaMovIE):
+ IE_NAME = 'videoweed'
+ IE_DESC = 'VideoWeed'
+
+ _VALID_URL = NovaMovIE._VALID_URL_TEMPLATE % {'host': 'videoweed\.(?:es|com)'}
+
+ _HOST = 'www.videoweed.es'
+
+ _FILE_DELETED_REGEX = r'>This file no longer exists on our servers.<'
+ _TITLE_REGEX = r'<h1 class="text_shadow">([^<]+)</h1>'
+
+ _TEST = {
+ 'url': 'http://www.videoweed.es/file/b42178afbea14',
+ 'md5': 'abd31a2132947262c50429e1d16c1bfd',
+ 'info_dict': {
+ 'id': 'b42178afbea14',
+ 'ext': 'flv',
+ 'title': 'optical illusion dissapeared image magic illusion',
+ 'description': ''
+ },
+ } \ No newline at end of file