mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:32:59 +01:00
[ruhd] Simplify
This commit is contained in:
parent
94f052cbf4
commit
8d32abff9e
@ -1,8 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import re
|
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
|
||||||
|
|
||||||
@ -21,19 +19,20 @@ class RUHDIE(InfoExtractor):
|
|||||||
}
|
}
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
video_id = self._match_id(url)
|
||||||
video_id = mobj.group('id')
|
|
||||||
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
video_url = self._html_search_regex(
|
video_url = self._html_search_regex(
|
||||||
r'<param name="src" value="([^"]+)"', webpage, 'video url')
|
r'<param name="src" value="([^"]+)"', webpage, 'video url')
|
||||||
title = self._html_search_regex(
|
title = self._html_search_regex(
|
||||||
r'<title>([^<]+) RUHD.ru - Видео Высокого качества №1 в России!</title>', webpage, 'title')
|
r'<title>([^<]+) RUHD.ru - Видео Высокого качества №1 в России!</title>',
|
||||||
|
webpage, 'title')
|
||||||
description = self._html_search_regex(
|
description = self._html_search_regex(
|
||||||
r'(?s)<div id="longdesc">(.+?)<span id="showlink">', webpage, 'description', fatal=False)
|
r'(?s)<div id="longdesc">(.+?)<span id="showlink">',
|
||||||
|
webpage, 'description', fatal=False)
|
||||||
thumbnail = self._html_search_regex(
|
thumbnail = self._html_search_regex(
|
||||||
r'<param name="previewImage" value="([^"]+)"', webpage, 'thumbnail', fatal=False)
|
r'<param name="previewImage" value="([^"]+)"',
|
||||||
|
webpage, 'thumbnail', fatal=False)
|
||||||
if thumbnail:
|
if thumbnail:
|
||||||
thumbnail = 'http://www.ruhd.ru' + thumbnail
|
thumbnail = 'http://www.ruhd.ru' + thumbnail
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user