aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorM.Yasoob Ullah Khalid ☺ <yasoob.khld@gmail.com>2014-08-22 01:30:49 +0500
committerM.Yasoob Ullah Khalid ☺ <yasoob.khld@gmail.com>2014-08-22 01:30:49 +0500
commit76beff70a8899651b40a664a63ed2e4586145328 (patch)
tree365aa0c35810a8431097b9a17e4a7402f0018778 /youtube_dl
parent61882bf7c69ddeee58b5e02bf7cd8973632fe2c9 (diff)
downloadyoutube-dl-76beff70a8899651b40a664a63ed2e4586145328.tar.xz
Added an IE for Dump.com
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/__init__.py1
-rw-r--r--youtube_dl/extractor/dump.py39
2 files changed, 40 insertions, 0 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py
index be7616edc..7ad5d9318 100644
--- a/youtube_dl/extractor/__init__.py
+++ b/youtube_dl/extractor/__init__.py
@@ -69,6 +69,7 @@ from .dfb import DFBIE
from .dotsub import DotsubIE
from .dreisat import DreiSatIE
from .drtv import DRTVIE
+from .dump import DumpIE
from .defense import DefenseGouvFrIE
from .discovery import DiscoveryIE
from .divxstage import DivxStageIE
diff --git a/youtube_dl/extractor/dump.py b/youtube_dl/extractor/dump.py
new file mode 100644
index 000000000..cfa71bd38
--- /dev/null
+++ b/youtube_dl/extractor/dump.py
@@ -0,0 +1,39 @@
+# encoding: utf-8
+from __future__ import unicode_literals
+
+import re
+
+from .common import InfoExtractor
+from ..utils import (
+ ExtractorError,
+)
+
+class DumpIE(InfoExtractor):
+ _VALID_URL = r'^https?://(?:www\.)?dump\.com/(?P<id>[a-zA-Z0-9]+)/'
+
+ def _real_extract(self, url):
+ m = re.match(self._VALID_URL, url)
+ video_id = m.group('id')
+
+ # Note: There is an easier-to-parse configuration at
+ # http://www.aparat.com/video/video/config/videohash/%video_id
+ # but the URL in there does not work
+
+ webpage = self._download_webpage(url, video_id)
+
+ try:
+ video_url = re.findall(r'file","(.+?.flv)"', webpage)[-1]
+ except IndexError:
+ raise ExtractorError(u'No video URL found')
+
+ thumb = re.findall('<meta property="og:image" content="(.+?)"',webpage)[0]
+
+ title = self._search_regex(r'<b>([^"]+)</b>', webpage, u'title')
+
+ return {
+ 'id': video_id,
+ 'title': title,
+ 'url': video_url,
+ 'ext': 'flv',
+ 'thumbnail': thumb,
+ }