2023-02-12 04:13:31 +00:00
|
|
|
|
import urllib.parse
|
2015-05-27 16:37:00 +00:00
|
|
|
|
from .common import InfoExtractor
|
2015-05-30 16:20:37 +00:00
|
|
|
|
from ..utils import (
|
2023-02-12 04:13:31 +00:00
|
|
|
|
determine_ext,
|
2015-05-30 16:20:37 +00:00
|
|
|
|
int_or_none,
|
2023-02-12 04:13:31 +00:00
|
|
|
|
parse_duration,
|
|
|
|
|
remove_end,
|
|
|
|
|
unified_strdate,
|
2015-05-30 16:26:12 +00:00
|
|
|
|
ExtractorError,
|
2015-05-30 16:20:37 +00:00
|
|
|
|
)
|
2015-05-27 16:37:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Porn91IE(InfoExtractor):
|
|
|
|
|
IE_NAME = '91porn'
|
2023-02-12 04:13:31 +00:00
|
|
|
|
_VALID_URL = r'(?:https?://)(?:www\.|)91porn\.com/view_video.php\?([^#]+&)?viewkey=(?P<id>\w+)'
|
2015-05-27 16:37:00 +00:00
|
|
|
|
|
2023-02-12 04:13:31 +00:00
|
|
|
|
_TESTS = [{
|
2015-05-30 15:35:55 +00:00
|
|
|
|
'url': 'http://91porn.com/view_video.php?viewkey=7e42283b4f5ab36da134',
|
2023-02-12 04:13:31 +00:00
|
|
|
|
'md5': 'd869db281402e0ef4ddef3c38b866f86',
|
2015-05-30 15:35:55 +00:00
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '7e42283b4f5ab36da134',
|
|
|
|
|
'title': '18岁大一漂亮学妹,水嫩性感,再爽一次!',
|
2023-02-12 04:13:31 +00:00
|
|
|
|
'description': 'md5:1ff241f579b07ae936a54e810ad2e891',
|
2015-05-30 16:20:37 +00:00
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'duration': 431,
|
2023-02-12 04:13:31 +00:00
|
|
|
|
'upload_date': '20150520',
|
|
|
|
|
'comment_count': int,
|
|
|
|
|
'view_count': int,
|
|
|
|
|
'age_limit': 18,
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://91porn.com/view_video.php?viewkey=7ef0cf3d362c699ab91c',
|
|
|
|
|
'md5': 'f8fd50540468a6d795378cd778b40226',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '7ef0cf3d362c699ab91c',
|
|
|
|
|
'title': '真实空乘,冲上云霄第二部',
|
|
|
|
|
'description': 'md5:618bf9652cafcc66cd277bd96789baea',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'duration': 248,
|
|
|
|
|
'upload_date': '20221119',
|
|
|
|
|
'comment_count': int,
|
|
|
|
|
'view_count': int,
|
2015-08-08 15:30:57 +00:00
|
|
|
|
'age_limit': 18,
|
2015-05-30 15:35:55 +00:00
|
|
|
|
}
|
2023-02-12 04:13:31 +00:00
|
|
|
|
}]
|
2015-05-27 16:37:00 +00:00
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2015-05-30 16:03:19 +00:00
|
|
|
|
video_id = self._match_id(url)
|
2015-05-27 16:37:00 +00:00
|
|
|
|
self._set_cookie('91porn.com', 'language', 'cn_CN')
|
2016-03-19 20:35:48 +00:00
|
|
|
|
|
|
|
|
|
webpage = self._download_webpage(
|
|
|
|
|
'http://91porn.com/view_video.php?viewkey=%s' % video_id, video_id)
|
2015-05-30 16:26:12 +00:00
|
|
|
|
|
2023-02-12 04:13:31 +00:00
|
|
|
|
if '视频不存在,可能已经被删除或者被举报为不良内容!' in webpage:
|
|
|
|
|
raise ExtractorError('91 Porn says: Video does not exist', expected=True)
|
2015-05-30 16:26:12 +00:00
|
|
|
|
|
2023-02-12 04:13:31 +00:00
|
|
|
|
daily_limit = self._search_regex(
|
|
|
|
|
r'作为游客,你每天只可观看([\d]+)个视频', webpage, 'exceeded daily limit', default=None, fatal=False)
|
|
|
|
|
if daily_limit:
|
|
|
|
|
raise ExtractorError(f'91 Porn says: Daily limit {daily_limit} videos exceeded', expected=True)
|
2015-05-27 16:37:00 +00:00
|
|
|
|
|
2019-07-13 19:57:44 +00:00
|
|
|
|
video_link_url = self._search_regex(
|
2023-02-12 04:13:31 +00:00
|
|
|
|
r'document\.write\(\s*strencode2\s*\(\s*((?:"[^"]+")|(?:\'[^\']+\'))', webpage, 'video link')
|
|
|
|
|
video_link_url = self._search_regex(
|
|
|
|
|
r'src=["\']([^"\']+)["\']', urllib.parse.unquote(video_link_url), 'unquoted video link')
|
2015-05-30 16:20:37 +00:00
|
|
|
|
|
2023-02-12 04:13:31 +00:00
|
|
|
|
formats, subtitles = self._get_formats_and_subtitle(video_link_url, video_id)
|
2015-05-30 16:20:37 +00:00
|
|
|
|
|
2023-02-12 04:13:31 +00:00
|
|
|
|
return {
|
2015-05-27 16:37:00 +00:00
|
|
|
|
'id': video_id,
|
2023-02-12 04:13:31 +00:00
|
|
|
|
'title': remove_end(self._html_extract_title(webpage).replace('\n', ''), 'Chinese homemade video').strip(),
|
|
|
|
|
'formats': formats,
|
|
|
|
|
'subtitles': subtitles,
|
|
|
|
|
'upload_date': unified_strdate(self._search_regex(
|
|
|
|
|
r'<span\s+class=["\']title-yakov["\']>(\d{4}-\d{2}-\d{2})</span>', webpage, 'upload_date', fatal=False)),
|
|
|
|
|
'description': self._html_search_regex(
|
|
|
|
|
r'<span\s+class=["\']more title["\']>\s*([^<]+)', webpage, 'description', fatal=False),
|
|
|
|
|
'duration': parse_duration(self._search_regex(
|
|
|
|
|
r'时长:\s*<span[^>]*>\s*(\d+(?::\d+){1,2})', webpage, 'duration', fatal=False)),
|
|
|
|
|
'comment_count': int_or_none(self._search_regex(
|
|
|
|
|
r'留言:\s*<span[^>]*>\s*(\d+)\s*</span>', webpage, 'comment count', fatal=False)),
|
|
|
|
|
'view_count': int_or_none(self._search_regex(
|
|
|
|
|
r'热度:\s*<span[^>]*>\s*(\d+)\s*</span>', webpage, 'view count', fatal=False)),
|
|
|
|
|
'age_limit': 18,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def _get_formats_and_subtitle(self, video_link_url, video_id):
|
|
|
|
|
ext = determine_ext(video_link_url)
|
|
|
|
|
if ext == 'm3u8':
|
|
|
|
|
formats, subtitles = self._extract_m3u8_formats_and_subtitles(video_link_url, video_id, ext='mp4')
|
|
|
|
|
else:
|
|
|
|
|
formats = [{'url': video_link_url, 'ext': ext}]
|
|
|
|
|
subtitles = {}
|
2017-04-22 13:16:36 +00:00
|
|
|
|
|
2023-02-12 04:13:31 +00:00
|
|
|
|
return formats, subtitles
|