aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/ruhd.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-07-13 04:03:22 +0700
committerSergey M․ <dstftw@gmail.com>2014-07-13 04:03:22 +0700
commit81650f95e2d28f4acc8a864c5221f1e95f75adda (patch)
treef7c13b8f6297a9bc6a70f720689b6748a2ece52d /youtube_dl/extractor/ruhd.py
parent34dbcb8505897ffc91197e6db909bf38d390475e (diff)
downloadyoutube-dl-81650f95e2d28f4acc8a864c5221f1e95f75adda.zip
youtube-dl-81650f95e2d28f4acc8a864c5221f1e95f75adda.tar.gz
youtube-dl-81650f95e2d28f4acc8a864c5221f1e95f75adda.tar.bz2
[ruhd] Add extractor
Diffstat (limited to 'youtube_dl/extractor/ruhd.py')
-rw-r--r--youtube_dl/extractor/ruhd.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/youtube_dl/extractor/ruhd.py b/youtube_dl/extractor/ruhd.py
new file mode 100644
index 0000000..55b58e5
--- /dev/null
+++ b/youtube_dl/extractor/ruhd.py
@@ -0,0 +1,46 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+import re
+
+from .common import InfoExtractor
+
+
+class RUHDIE(InfoExtractor):
+ _VALID_URL = r'http://(?:www\.)?ruhd\.ru/play\.php\?vid=(?P<id>\d+)'
+ _TEST = {
+ 'url': 'http://www.ruhd.ru/play.php?vid=207',
+ 'md5': 'd1a9ec4edf8598e3fbd92bb16072ba83',
+ 'info_dict': {
+ 'id': '207',
+ 'ext': 'divx',
+ 'title': 'КОТ бааааам',
+ 'description': 'классный кот)',
+ 'thumbnail': 're:^http://.*\.jpg$',
+ }
+ }
+
+ def _real_extract(self, url):
+ mobj = re.match(self._VALID_URL, url)
+ video_id = mobj.group('id')
+
+ webpage = self._download_webpage(url, video_id)
+
+ video_url = self._html_search_regex(
+ r'<param name="src" value="([^"]+)"', webpage, 'video url')
+ title = self._html_search_regex(
+ r'<title>([^<]+)&nbsp;&nbsp; RUHD.ru - Видео Высокого качества №1 в России!</title>', webpage, 'title')
+ description = self._html_search_regex(
+ r'(?s)<div id="longdesc">(.+?)<span id="showlink">', webpage, 'description', fatal=False)
+ thumbnail = self._html_search_regex(
+ r'<param name="previewImage" value="([^"]+)"', webpage, 'thumbnail', fatal=False)
+ if thumbnail:
+ thumbnail = 'http://www.ruhd.ru' + thumbnail
+
+ return {
+ 'id': video_id,
+ 'url': video_url,
+ 'title': title,
+ 'description': description,
+ 'thumbnail': thumbnail,
+ }