aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/ruhd.py
diff options
context:
space:
mode:
authorUnknown <blackjack4494@web.de>2020-09-02 20:25:25 +0200
committerUnknown <blackjack4494@web.de>2020-09-02 20:25:25 +0200
commitcefecac12cd3c70f9c7a30992c60b05c2eb5d34e (patch)
treef7b8e3f8ca2f6e402c83a501f72c09854ae04887 /youtube_dl/extractor/ruhd.py
parent9688f237163b6aa546fde00bb3fd1e3445dd4c31 (diff)
downloadhypervideo-pre-cefecac12cd3c70f9c7a30992c60b05c2eb5d34e.tar.lz
hypervideo-pre-cefecac12cd3c70f9c7a30992c60b05c2eb5d34e.tar.xz
hypervideo-pre-cefecac12cd3c70f9c7a30992c60b05c2eb5d34e.zip
[skip travis] renaming
to avoid using same folder when using pip install for example
Diffstat (limited to 'youtube_dl/extractor/ruhd.py')
-rw-r--r--youtube_dl/extractor/ruhd.py45
1 files changed, 0 insertions, 45 deletions
diff --git a/youtube_dl/extractor/ruhd.py b/youtube_dl/extractor/ruhd.py
deleted file mode 100644
index 3c8053a26..000000000
--- a/youtube_dl/extractor/ruhd.py
+++ /dev/null
@@ -1,45 +0,0 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
-from .common import InfoExtractor
-
-
-class RUHDIE(InfoExtractor):
- _VALID_URL = r'https?://(?: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': r're:^http://.*\.jpg$',
- }
- }
-
- def _real_extract(self, url):
- video_id = self._match_id(url)
- 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,
- }