2018-08-21 18:44:22 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2019-12-19 23:02:39 +00:00
|
|
|
from ..compat import compat_str
|
2019-01-28 23:42:49 +00:00
|
|
|
from ..utils import (
|
|
|
|
parse_duration,
|
2019-01-29 16:56:42 +00:00
|
|
|
urljoin,
|
2019-01-28 23:42:49 +00:00
|
|
|
)
|
2018-08-21 18:44:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
class YourPornIE(InfoExtractor):
|
2019-12-19 23:02:39 +00:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?sxyprn\.com/post/(?P<id>[^/?#&.]+)'
|
2019-04-13 08:02:09 +00:00
|
|
|
_TESTS = [{
|
2019-12-19 23:02:39 +00:00
|
|
|
'url': 'https://sxyprn.com/post/57ffcb2e1179b.html',
|
2018-08-21 18:44:22 +00:00
|
|
|
'md5': '6f8682b6464033d87acaa7a8ff0c092e',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '57ffcb2e1179b',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'md5:c9f43630bd968267672651ba905a7d35',
|
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
2019-01-29 16:56:42 +00:00
|
|
|
'duration': 165,
|
|
|
|
'age_limit': 18,
|
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': True,
|
2018-08-21 18:44:22 +00:00
|
|
|
},
|
2019-04-13 08:02:09 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://sxyprn.com/post/57ffcb2e1179b.html',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
2018-08-21 18:44:22 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
video_id = self._match_id(url)
|
|
|
|
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
|
2019-12-19 23:02:39 +00:00
|
|
|
parts = self._parse_json(
|
2018-08-21 18:44:22 +00:00
|
|
|
self._search_regex(
|
|
|
|
r'data-vnfo=(["\'])(?P<data>{.+?})\1', webpage, 'data info',
|
|
|
|
group='data'),
|
2019-12-19 23:02:39 +00:00
|
|
|
video_id)[video_id].split('/')
|
|
|
|
|
|
|
|
num = 0
|
|
|
|
for c in parts[6] + parts[7]:
|
|
|
|
if c.isnumeric():
|
|
|
|
num += int(c)
|
|
|
|
parts[5] = compat_str(int(parts[5]) - num)
|
|
|
|
parts[1] += '8'
|
|
|
|
video_url = urljoin(url, '/'.join(parts))
|
2018-08-21 18:44:22 +00:00
|
|
|
|
|
|
|
title = (self._search_regex(
|
|
|
|
r'<[^>]+\bclass=["\']PostEditTA[^>]+>([^<]+)', webpage, 'title',
|
|
|
|
default=None) or self._og_search_description(webpage)).strip()
|
|
|
|
thumbnail = self._og_search_thumbnail(webpage)
|
2019-01-29 16:56:42 +00:00
|
|
|
duration = parse_duration(self._search_regex(
|
|
|
|
r'duration\s*:\s*<[^>]+>([\d:]+)', webpage, 'duration',
|
|
|
|
default=None))
|
2018-08-21 18:44:22 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'url': video_url,
|
|
|
|
'title': title,
|
|
|
|
'thumbnail': thumbnail,
|
2019-01-29 16:56:42 +00:00
|
|
|
'duration': duration,
|
|
|
|
'age_limit': 18,
|
2019-12-19 23:02:39 +00:00
|
|
|
'ext': 'mp4',
|
2018-08-21 18:44:22 +00:00
|
|
|
}
|