mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[pornhd] Simplify
This commit is contained in:
parent
1bb2fc98e0
commit
6f5dcd4eee
@ -3,12 +3,13 @@
|
|||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import compat_urllib_parse
|
from ..utils import compat_urllib_parse
|
||||||
|
|
||||||
|
|
||||||
class PornHdIE(InfoExtractor):
|
class PornHdIE(InfoExtractor):
|
||||||
_VALID_URL = r'(?:http://)?(?:www\.)?pornhd\.com/videos/(?P<video_id>[0-9]+)/(?P<video_title>.+)'
|
_VALID_URL = r'(?:http://)?(?:www\.)?pornhd\.com/videos/(?P<video_id>[0-9]+)/(?P<video_title>.+)'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
u'id': u'1962',
|
|
||||||
u'url': u'http://www.pornhd.com/videos/1962/sierra-day-gets-his-cum-all-over-herself-hd-porn-video',
|
u'url': u'http://www.pornhd.com/videos/1962/sierra-day-gets-his-cum-all-over-herself-hd-porn-video',
|
||||||
u'md5': u'4fe06e5108e8b524c35896f4c54c7155',
|
u'file': u'1962.flv',
|
||||||
|
u'md5': u'35272469887dca97abd30abecc6cdf75',
|
||||||
u'info_dict': {
|
u'info_dict': {
|
||||||
u"title": u"sierra-day-gets-his-cum-all-over-herself-hd-porn-video",
|
u"title": u"sierra-day-gets-his-cum-all-over-herself-hd-porn-video",
|
||||||
u"age_limit": 18,
|
u"age_limit": 18,
|
||||||
@ -20,23 +21,18 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
video_id = mobj.group('video_id')
|
video_id = mobj.group('video_id')
|
||||||
video_title = mobj.group('video_title')
|
video_title = mobj.group('video_title')
|
||||||
video_extension = 'flv'
|
|
||||||
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
|
|
||||||
self.report_extraction(video_id)
|
|
||||||
|
|
||||||
video_url = self._html_search_regex(
|
video_url = self._html_search_regex(
|
||||||
r'&hd=(http.+?)&', webpage, u'video URL')
|
r'&hd=(http.+?)&', webpage, u'video URL')
|
||||||
video_url = compat_urllib_parse.unquote(video_url)
|
video_url = compat_urllib_parse.unquote(video_url)
|
||||||
|
|
||||||
age_limit = 18
|
age_limit = 18
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
'ext': video_extension,
|
'ext': 'flv',
|
||||||
'title': video_title,
|
'title': video_title,
|
||||||
'age_limit': age_limit,
|
'age_limit': age_limit,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user