2014-03-21 00:19:54 +01:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-06-23 22:12:14 +02:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-12-13 12:24:42 +01:00
|
|
|
from ..utils import (
|
2015-10-25 17:56:35 +01:00
|
|
|
int_or_none,
|
2015-11-21 17:18:17 +01:00
|
|
|
sanitized_Request,
|
2015-10-25 17:56:35 +01:00
|
|
|
str_to_int,
|
2013-06-23 22:12:14 +02:00
|
|
|
unescapeHTML,
|
|
|
|
unified_strdate,
|
|
|
|
)
|
2015-10-25 17:56:35 +01:00
|
|
|
from ..aes import aes_decrypt_text
|
2013-06-23 22:12:14 +02:00
|
|
|
|
2013-12-26 18:37:12 +01:00
|
|
|
|
2013-06-23 22:12:14 +02:00
|
|
|
class YouPornIE(InfoExtractor):
|
2015-10-25 17:56:35 +01:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?youporn\.com/watch/(?P<id>\d+)/(?P<display_id>[^/?#&]+)'
|
2015-10-25 18:12:12 +01:00
|
|
|
_TESTS = [{
|
2014-03-21 00:19:54 +01:00
|
|
|
'url': 'http://www.youporn.com/watch/505835/sex-ed-is-it-safe-to-masturbate-daily/',
|
2015-10-25 18:12:12 +01:00
|
|
|
'md5': '71ec5fcfddacf80f495efa8b6a8d9a89',
|
2014-03-21 00:19:54 +01:00
|
|
|
'info_dict': {
|
|
|
|
'id': '505835',
|
2015-10-25 17:56:35 +01:00
|
|
|
'display_id': 'sex-ed-is-it-safe-to-masturbate-daily',
|
2014-03-21 00:19:54 +01:00
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Sex Ed: Is It Safe To Masturbate Daily?',
|
2015-10-25 17:56:35 +01:00
|
|
|
'description': 'Love & Sex Answers: http://bit.ly/DanAndJenn -- Is It Unhealthy To Masturbate Daily?',
|
|
|
|
'thumbnail': 're:^https?://.*\.jpg$',
|
2015-10-17 19:22:47 +02:00
|
|
|
'uploader': 'Ask Dan And Jennifer',
|
2015-10-25 17:56:35 +01:00
|
|
|
'upload_date': '20101221',
|
|
|
|
'average_rating': int,
|
|
|
|
'view_count': int,
|
2015-10-25 18:41:10 +01:00
|
|
|
'comment_count': int,
|
2015-10-25 17:56:35 +01:00
|
|
|
'categories': list,
|
|
|
|
'tags': list,
|
2014-03-21 00:19:54 +01:00
|
|
|
'age_limit': 18,
|
2015-10-25 18:12:12 +01:00
|
|
|
},
|
|
|
|
}, {
|
|
|
|
# Anonymous User uploader
|
|
|
|
'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',
|
|
|
|
'thumbnail': 're:^https?://.*\.jpg$',
|
|
|
|
'uploader': 'Anonymous User',
|
|
|
|
'upload_date': '20111125',
|
|
|
|
'average_rating': int,
|
|
|
|
'view_count': int,
|
2015-10-25 18:41:10 +01:00
|
|
|
'comment_count': int,
|
2015-10-25 18:12:12 +01:00
|
|
|
'categories': list,
|
|
|
|
'tags': list,
|
|
|
|
'age_limit': 18,
|
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': True,
|
|
|
|
},
|
|
|
|
}]
|
2013-06-23 22:12:14 +02:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
2015-10-25 17:56:35 +01:00
|
|
|
video_id = mobj.group('id')
|
|
|
|
display_id = mobj.group('display_id')
|
2013-06-23 22:12:14 +02:00
|
|
|
|
2015-11-21 17:18:17 +01:00
|
|
|
request = sanitized_Request(url)
|
2015-10-25 17:56:35 +01:00
|
|
|
request.add_header('Cookie', 'age_verified=1')
|
|
|
|
webpage = self._download_webpage(request, display_id)
|
|
|
|
|
|
|
|
title = self._search_regex(
|
|
|
|
[r'(?:video_titles|videoTitle)\s*[:=]\s*(["\'])(?P<title>.+?)\1',
|
|
|
|
r'<h1[^>]+class=["\']heading\d?["\'][^>]*>([^<])<'],
|
|
|
|
webpage, 'title', group='title')
|
2013-06-23 22:12:14 +02:00
|
|
|
|
2015-10-25 17:56:35 +01:00
|
|
|
links = []
|
|
|
|
|
|
|
|
sources = self._search_regex(
|
2016-03-04 20:51:27 +01:00
|
|
|
r'(?s)sources\s*:\s*({.+?})', webpage, 'sources', default=None)
|
2015-10-25 17:56:35 +01:00
|
|
|
if sources:
|
|
|
|
for _, link in re.findall(r'[^:]+\s*:\s*(["\'])(http.+?)\1', sources):
|
2015-10-17 19:22:47 +02:00
|
|
|
links.append(link)
|
2014-11-23 20:41:03 +01:00
|
|
|
|
2015-10-25 17:56:35 +01:00
|
|
|
# Fallback #1
|
|
|
|
for _, link in re.findall(
|
|
|
|
r'(?:videoUrl|videoSrc|videoIpadUrl|html5PlayerSrc)\s*[:=]\s*(["\'])(http.+?)\1', webpage):
|
|
|
|
links.append(link)
|
|
|
|
|
|
|
|
# Fallback #2, this also contains extra low quality 180p format
|
|
|
|
for _, link in re.findall(r'<a[^>]+href=(["\'])(http.+?)\1[^>]+title=["\']Download [Vv]ideo', webpage):
|
|
|
|
links.append(link)
|
|
|
|
|
|
|
|
# Fallback #3, encrypted links
|
|
|
|
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-23 22:12:14 +02:00
|
|
|
formats = []
|
2015-10-25 17:56:35 +01:00
|
|
|
for video_url in set(unescapeHTML(link) for link in links):
|
|
|
|
f = {
|
2013-06-23 22:12:14 +02:00
|
|
|
'url': video_url,
|
2015-10-25 17:56:35 +01: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-04 20:50:12 +01:00
|
|
|
# /201012/17/505835/vl_240p_240k_505835/YouPorn%20-%20Sex%20Ed%20Is%20It%20Safe%20To%20Masturbate%20Daily.mp4
|
2015-10-25 17:56:35 +01:00
|
|
|
# We will benefit from it by extracting some metadata
|
2016-03-04 20:50:12 +01:00
|
|
|
mobj = re.search(r'(?P<height>\d{3,4})[pP]_(?P<bitrate>\d+)[kK]_\d+/', video_url)
|
2015-10-25 17:56:35 +01: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-26 18:37:12 +01:00
|
|
|
self._sort_formats(formats)
|
|
|
|
|
2016-01-31 13:00:07 +01:00
|
|
|
description = self._og_search_description(webpage, default=None)
|
2015-10-25 17:56:35 +01:00
|
|
|
thumbnail = self._search_regex(
|
|
|
|
r'(?:imageurl\s*=|poster\s*:)\s*(["\'])(?P<thumbnail>.+?)\1',
|
|
|
|
webpage, 'thumbnail', fatal=False, group='thumbnail')
|
|
|
|
|
2015-10-25 18:12:12 +01:00
|
|
|
uploader = self._html_search_regex(
|
2016-01-31 13:00:07 +01:00
|
|
|
r'(?s)<div[^>]+class=["\']videoInfoBy(?:\s+[^"\']+)?["\'][^>]*>\s*By:\s*</div>(.+?)</(?:a|div)>',
|
2015-10-25 17:56:35 +01:00
|
|
|
webpage, 'uploader', fatal=False)
|
|
|
|
upload_date = unified_strdate(self._html_search_regex(
|
|
|
|
r'(?s)<div[^>]+class=["\']videoInfoTime["\'][^>]*>(.+?)</div>',
|
|
|
|
webpage, 'upload date', fatal=False))
|
|
|
|
|
|
|
|
age_limit = self._rta_search(webpage)
|
|
|
|
|
|
|
|
average_rating = int_or_none(self._search_regex(
|
|
|
|
r'<div[^>]+class=["\']videoInfoRating["\'][^>]*>\s*<div[^>]+class=["\']videoRatingPercentage["\'][^>]*>(\d+)%</div>',
|
|
|
|
webpage, 'average rating', fatal=False))
|
|
|
|
|
|
|
|
view_count = str_to_int(self._search_regex(
|
|
|
|
r'(?s)<div[^>]+class=["\']videoInfoViews["\'][^>]*>.*?([\d,.]+)\s*</div>',
|
|
|
|
webpage, 'view count', fatal=False))
|
2015-10-25 18:41:10 +01:00
|
|
|
comment_count = str_to_int(self._search_regex(
|
|
|
|
r'>All [Cc]omments? \(([\d,.]+)\)',
|
|
|
|
webpage, 'comment count', fatal=False))
|
2015-10-25 17:56:35 +01:00
|
|
|
|
|
|
|
def extract_tag_box(title):
|
|
|
|
tag_box = self._search_regex(
|
|
|
|
(r'<div[^>]+class=["\']tagBoxTitle["\'][^>]*>\s*%s\b.*?</div>\s*'
|
|
|
|
'<div[^>]+class=["\']tagBoxContent["\']>(.+?)</div>') % re.escape(title),
|
|
|
|
webpage, '%s tag box' % title, default=None)
|
|
|
|
if not tag_box:
|
|
|
|
return []
|
|
|
|
return re.findall(r'<a[^>]+href=[^>]+>([^<]+)', tag_box)
|
|
|
|
|
|
|
|
categories = extract_tag_box('Category')
|
|
|
|
tags = extract_tag_box('Tags')
|
2014-11-23 20:41:03 +01:00
|
|
|
|
2013-10-26 21:57:10 +02:00
|
|
|
return {
|
|
|
|
'id': video_id,
|
2015-10-25 17:56:35 +01:00
|
|
|
'display_id': display_id,
|
|
|
|
'title': title,
|
|
|
|
'description': description,
|
|
|
|
'thumbnail': thumbnail,
|
|
|
|
'uploader': uploader,
|
|
|
|
'upload_date': upload_date,
|
|
|
|
'average_rating': average_rating,
|
|
|
|
'view_count': view_count,
|
2015-10-25 18:41:10 +01:00
|
|
|
'comment_count': comment_count,
|
2015-10-25 17:56:35 +01:00
|
|
|
'categories': categories,
|
|
|
|
'tags': tags,
|
2013-10-26 21:57:10 +02:00
|
|
|
'age_limit': age_limit,
|
|
|
|
'formats': formats,
|
|
|
|
}
|