2014-03-21 08:19:54 +09:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-06-24 05:12:14 +09:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-12-13 20:24:42 +09:00
|
|
|
from ..utils import (
|
2015-10-26 01:56:35 +09:00
|
|
|
int_or_none,
|
|
|
|
str_to_int,
|
2013-06-24 05:12:14 +09:00
|
|
|
unescapeHTML,
|
|
|
|
unified_strdate,
|
2018-07-21 21:08:28 +09:00
|
|
|
url_or_none,
|
2013-06-24 05:12:14 +09:00
|
|
|
)
|
2015-10-26 01:56:35 +09:00
|
|
|
from ..aes import aes_decrypt_text
|
2013-06-24 05:12:14 +09:00
|
|
|
|
2013-12-27 02:37:12 +09:00
|
|
|
|
2013-06-24 05:12:14 +09:00
|
|
|
class YouPornIE(InfoExtractor):
|
2020-04-05 22:56:14 +09:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?youporn\.com/(?:watch|embed)/(?P<id>\d+)(?:/(?P<display_id>[^/?#&]+))?'
|
2015-10-26 02:12:12 +09:00
|
|
|
_TESTS = [{
|
2014-03-21 08:19:54 +09:00
|
|
|
'url': 'http://www.youporn.com/watch/505835/sex-ed-is-it-safe-to-masturbate-daily/',
|
2016-06-12 06:49:37 +09:00
|
|
|
'md5': '3744d24c50438cf5b6f6d59feb5055c2',
|
2014-03-21 08:19:54 +09:00
|
|
|
'info_dict': {
|
|
|
|
'id': '505835',
|
2015-10-26 01:56:35 +09:00
|
|
|
'display_id': 'sex-ed-is-it-safe-to-masturbate-daily',
|
2014-03-21 08:19:54 +09:00
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Sex Ed: Is It Safe To Masturbate Daily?',
|
2015-10-26 01:56:35 +09:00
|
|
|
'description': 'Love & Sex Answers: http://bit.ly/DanAndJenn -- Is It Unhealthy To Masturbate Daily?',
|
2017-01-02 21:08:07 +09:00
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
2021-02-22 01:19:37 +09:00
|
|
|
'duration': 210,
|
2015-10-18 02:22:47 +09:00
|
|
|
'uploader': 'Ask Dan And Jennifer',
|
2017-06-22 02:47:02 +09:00
|
|
|
'upload_date': '20101217',
|
2015-10-26 01:56:35 +09:00
|
|
|
'average_rating': int,
|
|
|
|
'view_count': int,
|
|
|
|
'categories': list,
|
|
|
|
'tags': list,
|
2014-03-21 08:19:54 +09:00
|
|
|
'age_limit': 18,
|
2015-10-26 02:12:12 +09:00
|
|
|
},
|
|
|
|
}, {
|
2016-09-02 01:15:01 +09:00
|
|
|
# Unknown uploader
|
2015-10-26 02:12:12 +09:00
|
|
|
'url': 'http://www.youporn.com/watch/561726/big-tits-awesome-brunette-on-amazing-webcam-show/?from=related3&al=2&from_id=561726&pos=4',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '561726',
|
|
|
|
'display_id': 'big-tits-awesome-brunette-on-amazing-webcam-show',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Big Tits Awesome Brunette On amazing webcam show',
|
|
|
|
'description': 'http://sweetlivegirls.com Big Tits Awesome Brunette On amazing webcam show.mp4',
|
2017-01-02 21:08:07 +09:00
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
2016-09-02 01:15:01 +09:00
|
|
|
'uploader': 'Unknown',
|
2017-06-22 02:47:02 +09:00
|
|
|
'upload_date': '20110418',
|
2015-10-26 02:12:12 +09:00
|
|
|
'average_rating': int,
|
|
|
|
'view_count': int,
|
|
|
|
'categories': list,
|
|
|
|
'tags': list,
|
|
|
|
'age_limit': 18,
|
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': True,
|
|
|
|
},
|
2021-02-22 01:21:38 +09:00
|
|
|
'skip': '404',
|
2020-04-05 22:56:14 +09:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.youporn.com/embed/505835/sex-ed-is-it-safe-to-masturbate-daily/',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'http://www.youporn.com/watch/505835',
|
|
|
|
'only_matching': True,
|
2021-01-15 16:54:23 +09:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.youporn.com/watch/13922959/femdom-principal/',
|
|
|
|
'only_matching': True,
|
2015-10-26 02:12:12 +09:00
|
|
|
}]
|
2013-06-24 05:12:14 +09:00
|
|
|
|
2020-04-05 22:56:14 +09:00
|
|
|
@staticmethod
|
|
|
|
def _extract_urls(webpage):
|
|
|
|
return re.findall(
|
|
|
|
r'<iframe[^>]+\bsrc=["\']((?:https?:)?//(?:www\.)?youporn\.com/embed/\d+)',
|
|
|
|
webpage)
|
|
|
|
|
2013-06-24 05:12:14 +09:00
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
2015-10-26 01:56:35 +09:00
|
|
|
video_id = mobj.group('id')
|
2020-04-05 22:56:14 +09:00
|
|
|
display_id = mobj.group('display_id') or video_id
|
2013-06-24 05:12:14 +09:00
|
|
|
|
2020-04-05 22:56:14 +09:00
|
|
|
webpage = self._download_webpage(
|
|
|
|
'http://www.youporn.com/watch/%s' % video_id, display_id,
|
|
|
|
headers={'Cookie': 'age_verified=1'})
|
2015-10-26 01:56:35 +09:00
|
|
|
|
2019-01-09 02:37:01 +09:00
|
|
|
title = self._html_search_regex(
|
|
|
|
r'(?s)<div[^>]+class=["\']watchVideoTitle[^>]+>(.+?)</div>',
|
|
|
|
webpage, 'title', default=None) or self._og_search_title(
|
2017-06-22 02:20:45 +09:00
|
|
|
webpage, default=None) or self._html_search_meta(
|
|
|
|
'title', webpage, fatal=True)
|
2013-06-24 05:12:14 +09:00
|
|
|
|
2015-10-26 01:56:35 +09:00
|
|
|
links = []
|
|
|
|
|
2017-06-22 02:40:15 +09:00
|
|
|
# Main source
|
|
|
|
definitions = self._parse_json(
|
|
|
|
self._search_regex(
|
2021-01-15 16:43:52 +09:00
|
|
|
r'mediaDefinition\s*[=:]\s*(\[.+?\])\s*[;,]', webpage,
|
2017-06-22 02:40:15 +09:00
|
|
|
'media definitions', default='[]'),
|
|
|
|
video_id, fatal=False)
|
|
|
|
if definitions:
|
|
|
|
for definition in definitions:
|
|
|
|
if not isinstance(definition, dict):
|
|
|
|
continue
|
2018-07-21 21:08:28 +09:00
|
|
|
video_url = url_or_none(definition.get('videoUrl'))
|
|
|
|
if video_url:
|
2017-06-22 02:40:15 +09:00
|
|
|
links.append(video_url)
|
|
|
|
|
|
|
|
# Fallback #1, this also contains extra low quality 180p format
|
2021-01-15 17:12:04 +09:00
|
|
|
for _, link in re.findall(r'<a[^>]+href=(["\'])(http(?:(?!\1).)+\.mp4(?:(?!\1).)*)\1[^>]+title=["\']Download [Vv]ideo', webpage):
|
2017-06-22 02:40:15 +09:00
|
|
|
links.append(link)
|
|
|
|
|
|
|
|
# Fallback #2 (unavailable as at 22.06.2017)
|
2015-10-26 01:56:35 +09:00
|
|
|
sources = self._search_regex(
|
2016-03-05 04:51:27 +09:00
|
|
|
r'(?s)sources\s*:\s*({.+?})', webpage, 'sources', default=None)
|
2015-10-26 01:56:35 +09:00
|
|
|
if sources:
|
|
|
|
for _, link in re.findall(r'[^:]+\s*:\s*(["\'])(http.+?)\1', sources):
|
2015-10-18 02:22:47 +09:00
|
|
|
links.append(link)
|
2014-11-24 04:41:03 +09:00
|
|
|
|
2017-06-22 02:40:15 +09:00
|
|
|
# Fallback #3 (unavailable as at 22.06.2017)
|
2015-10-26 01:56:35 +09:00
|
|
|
for _, link in re.findall(
|
2017-06-22 02:40:15 +09:00
|
|
|
r'(?:videoSrc|videoIpadUrl|html5PlayerSrc)\s*[:=]\s*(["\'])(http.+?)\1', webpage):
|
2015-10-26 01:56:35 +09:00
|
|
|
links.append(link)
|
|
|
|
|
2017-06-22 02:40:15 +09:00
|
|
|
# Fallback #4, encrypted links (unavailable as at 22.06.2017)
|
2015-10-26 01:56:35 +09:00
|
|
|
for _, encrypted_link in re.findall(
|
|
|
|
r'encryptedQuality\d{3,4}URL\s*=\s*(["\'])([\da-zA-Z+/=]+)\1', webpage):
|
|
|
|
links.append(aes_decrypt_text(encrypted_link, title, 32).decode('utf-8'))
|
|
|
|
|
2013-06-24 05:12:14 +09:00
|
|
|
formats = []
|
2015-10-26 01:56:35 +09:00
|
|
|
for video_url in set(unescapeHTML(link) for link in links):
|
|
|
|
f = {
|
2013-06-24 05:12:14 +09:00
|
|
|
'url': video_url,
|
2015-10-26 01:56:35 +09:00
|
|
|
}
|
|
|
|
# Video URL's path looks like this:
|
|
|
|
# /201012/17/505835/720p_1500k_505835/YouPorn%20-%20Sex%20Ed%20Is%20It%20Safe%20To%20Masturbate%20Daily.mp4
|
2016-03-05 04:50:12 +09:00
|
|
|
# /201012/17/505835/vl_240p_240k_505835/YouPorn%20-%20Sex%20Ed%20Is%20It%20Safe%20To%20Masturbate%20Daily.mp4
|
2021-01-15 16:54:23 +09:00
|
|
|
# /videos/201703/11/109285532/1080P_4000K_109285532.mp4
|
2015-10-26 01:56:35 +09:00
|
|
|
# We will benefit from it by extracting some metadata
|
2021-01-15 16:54:23 +09:00
|
|
|
mobj = re.search(r'(?P<height>\d{3,4})[pP]_(?P<bitrate>\d+)[kK]_\d+', video_url)
|
2015-10-26 01:56:35 +09:00
|
|
|
if mobj:
|
|
|
|
height = int(mobj.group('height'))
|
|
|
|
bitrate = int(mobj.group('bitrate'))
|
|
|
|
f.update({
|
|
|
|
'format_id': '%dp-%dk' % (height, bitrate),
|
|
|
|
'height': height,
|
|
|
|
'tbr': bitrate,
|
|
|
|
})
|
|
|
|
formats.append(f)
|
2013-12-27 02:37:12 +09:00
|
|
|
self._sort_formats(formats)
|
|
|
|
|
2019-01-09 02:37:01 +09:00
|
|
|
description = self._html_search_regex(
|
|
|
|
r'(?s)<div[^>]+\bid=["\']description["\'][^>]*>(.+?)</div>',
|
|
|
|
webpage, 'description',
|
|
|
|
default=None) or self._og_search_description(
|
|
|
|
webpage, default=None)
|
2015-10-26 01:56:35 +09:00
|
|
|
thumbnail = self._search_regex(
|
|
|
|
r'(?:imageurl\s*=|poster\s*:)\s*(["\'])(?P<thumbnail>.+?)\1',
|
|
|
|
webpage, 'thumbnail', fatal=False, group='thumbnail')
|
2021-02-22 01:19:37 +09:00
|
|
|
duration = int_or_none(self._html_search_meta(
|
|
|
|
'video:duration', webpage, 'duration', fatal=False))
|
2015-10-26 01:56:35 +09:00
|
|
|
|
2015-10-26 02:12:12 +09:00
|
|
|
uploader = self._html_search_regex(
|
2016-06-12 06:49:37 +09:00
|
|
|
r'(?s)<div[^>]+class=["\']submitByLink["\'][^>]*>(.+?)</div>',
|
2015-10-26 01:56:35 +09:00
|
|
|
webpage, 'uploader', fatal=False)
|
|
|
|
upload_date = unified_strdate(self._html_search_regex(
|
2020-11-19 07:16:25 +09:00
|
|
|
[r'UPLOADED:\s*<span>([^<]+)',
|
|
|
|
r'Date\s+[Aa]dded:\s*<span>([^<]+)',
|
2017-06-22 02:47:02 +09:00
|
|
|
r'(?s)<div[^>]+class=["\']videoInfo(?:Date|Time)["\'][^>]*>(.+?)</div>'],
|
2015-10-26 01:56:35 +09:00
|
|
|
webpage, 'upload date', fatal=False))
|
|
|
|
|
|
|
|
age_limit = self._rta_search(webpage)
|
|
|
|
|
|
|
|
average_rating = int_or_none(self._search_regex(
|
2016-06-12 06:49:37 +09:00
|
|
|
r'<div[^>]+class=["\']videoRatingPercentage["\'][^>]*>(\d+)%</div>',
|
2015-10-26 01:56:35 +09:00
|
|
|
webpage, 'average rating', fatal=False))
|
|
|
|
|
|
|
|
view_count = str_to_int(self._search_regex(
|
2016-06-12 06:49:37 +09:00
|
|
|
r'(?s)<div[^>]+class=(["\']).*?\bvideoInfoViews\b.*?\1[^>]*>.*?(?P<count>[\d,.]+)<',
|
|
|
|
webpage, 'view count', fatal=False, group='count'))
|
2015-10-26 02:41:10 +09:00
|
|
|
comment_count = str_to_int(self._search_regex(
|
|
|
|
r'>All [Cc]omments? \(([\d,.]+)\)',
|
2020-11-19 07:16:25 +09:00
|
|
|
webpage, 'comment count', default=None))
|
2015-10-26 01:56:35 +09:00
|
|
|
|
2016-09-02 01:15:01 +09:00
|
|
|
def extract_tag_box(regex, title):
|
|
|
|
tag_box = self._search_regex(regex, webpage, title, default=None)
|
2015-10-26 01:56:35 +09:00
|
|
|
if not tag_box:
|
|
|
|
return []
|
|
|
|
return re.findall(r'<a[^>]+href=[^>]+>([^<]+)', tag_box)
|
|
|
|
|
2016-09-02 01:15:01 +09:00
|
|
|
categories = extract_tag_box(
|
|
|
|
r'(?s)Categories:.*?</[^>]+>(.+?)</div>', 'categories')
|
|
|
|
tags = extract_tag_box(
|
|
|
|
r'(?s)Tags:.*?</div>\s*<div[^>]+class=["\']tagBoxContent["\'][^>]*>(.+?)</div>',
|
|
|
|
'tags')
|
2014-11-24 04:41:03 +09:00
|
|
|
|
2013-10-27 04:57:10 +09:00
|
|
|
return {
|
|
|
|
'id': video_id,
|
2015-10-26 01:56:35 +09:00
|
|
|
'display_id': display_id,
|
|
|
|
'title': title,
|
|
|
|
'description': description,
|
|
|
|
'thumbnail': thumbnail,
|
2021-02-22 01:19:37 +09:00
|
|
|
'duration': duration,
|
2015-10-26 01:56:35 +09:00
|
|
|
'uploader': uploader,
|
|
|
|
'upload_date': upload_date,
|
|
|
|
'average_rating': average_rating,
|
|
|
|
'view_count': view_count,
|
2015-10-26 02:41:10 +09:00
|
|
|
'comment_count': comment_count,
|
2015-10-26 01:56:35 +09:00
|
|
|
'categories': categories,
|
|
|
|
'tags': tags,
|
2013-10-27 04:57:10 +09:00
|
|
|
'age_limit': age_limit,
|
|
|
|
'formats': formats,
|
|
|
|
}
|