mirror of https://github.com/blackjack4494/yt-dlc
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from .common import InfoExtractor
|
|
from ..utils import urljoin
|
|
|
|
|
|
class YourPornIE(InfoExtractor):
|
|
_VALID_URL = r'https?://(?:www\.)?yourporn\.sexy/post/(?P<id>[^/?#&.]+)'
|
|
_TEST = {
|
|
'url': 'https://yourporn.sexy/post/57ffcb2e1179b.html',
|
|
'md5': '6f8682b6464033d87acaa7a8ff0c092e',
|
|
'info_dict': {
|
|
'id': '57ffcb2e1179b',
|
|
'ext': 'mp4',
|
|
'title': 'md5:c9f43630bd968267672651ba905a7d35',
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
|
},
|
|
}
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
video_url = urljoin(url, self._parse_json(
|
|
self._search_regex(
|
|
r'data-vnfo=(["\'])(?P<data>{.+?})\1', webpage, 'data info',
|
|
group='data'),
|
|
video_id)[video_id])
|
|
|
|
title = (self._search_regex(
|
|
r'<[^>]+\bclass=["\']PostEditTA[^>]+>([^<]+)', webpage, 'title',
|
|
default=None) or self._og_search_description(webpage)).strip()
|
|
thumbnail = self._og_search_thumbnail(webpage)
|
|
|
|
return {
|
|
'id': video_id,
|
|
'url': video_url,
|
|
'title': title,
|
|
'thumbnail': thumbnail,
|
|
}
|