|
|
@ -13,6 +13,7 @@ from ..utils import (
|
|
|
|
int_or_none,
|
|
|
|
int_or_none,
|
|
|
|
parse_duration,
|
|
|
|
parse_duration,
|
|
|
|
parse_iso8601,
|
|
|
|
parse_iso8601,
|
|
|
|
|
|
|
|
str_or_none,
|
|
|
|
str_to_int,
|
|
|
|
str_to_int,
|
|
|
|
try_get,
|
|
|
|
try_get,
|
|
|
|
unified_timestamp,
|
|
|
|
unified_timestamp,
|
|
|
@ -198,6 +199,26 @@ class PornTubeIE(FourTubeBaseIE):
|
|
|
|
'params': {
|
|
|
|
'params': {
|
|
|
|
'skip_download': True,
|
|
|
|
'skip_download': True,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
}, {
|
|
|
|
|
|
|
|
'url': 'https://www.porntube.com/videos/squirting-teen-ballerina-ecg_1331406',
|
|
|
|
|
|
|
|
'info_dict': {
|
|
|
|
|
|
|
|
'id': '1331406',
|
|
|
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
|
|
|
'title': 'Squirting Teen Ballerina on ECG',
|
|
|
|
|
|
|
|
'uploader': 'Exploited College Girls',
|
|
|
|
|
|
|
|
'uploader_id': '665',
|
|
|
|
|
|
|
|
'channel': 'Exploited College Girls',
|
|
|
|
|
|
|
|
'channel_id': '665',
|
|
|
|
|
|
|
|
'upload_date': '20130920',
|
|
|
|
|
|
|
|
'timestamp': 1379685485,
|
|
|
|
|
|
|
|
'duration': 851,
|
|
|
|
|
|
|
|
'view_count': int,
|
|
|
|
|
|
|
|
'like_count': int,
|
|
|
|
|
|
|
|
'age_limit': 18,
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
'params': {
|
|
|
|
|
|
|
|
'skip_download': True,
|
|
|
|
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
}, {
|
|
|
|
'url': 'https://www.porntube.com/embed/7089759',
|
|
|
|
'url': 'https://www.porntube.com/embed/7089759',
|
|
|
|
'only_matching': True,
|
|
|
|
'only_matching': True,
|
|
|
@ -227,7 +248,11 @@ class PornTubeIE(FourTubeBaseIE):
|
|
|
|
|
|
|
|
|
|
|
|
thumbnail = url_or_none(video.get('masterThumb'))
|
|
|
|
thumbnail = url_or_none(video.get('masterThumb'))
|
|
|
|
uploader = try_get(video, lambda x: x['user']['username'], compat_str)
|
|
|
|
uploader = try_get(video, lambda x: x['user']['username'], compat_str)
|
|
|
|
uploader_id = compat_str(try_get(video, lambda x: x['user']['id'], int))
|
|
|
|
uploader_id = str_or_none(try_get(
|
|
|
|
|
|
|
|
video, lambda x: x['user']['id'], int))
|
|
|
|
|
|
|
|
channel = try_get(video, lambda x: x['channel']['name'], compat_str)
|
|
|
|
|
|
|
|
channel_id = str_or_none(try_get(
|
|
|
|
|
|
|
|
video, lambda x: x['channel']['id'], int))
|
|
|
|
like_count = int_or_none(video.get('likes'))
|
|
|
|
like_count = int_or_none(video.get('likes'))
|
|
|
|
dislike_count = int_or_none(video.get('dislikes'))
|
|
|
|
dislike_count = int_or_none(video.get('dislikes'))
|
|
|
|
view_count = int_or_none(video.get('playsQty'))
|
|
|
|
view_count = int_or_none(video.get('playsQty'))
|
|
|
@ -239,8 +264,10 @@ class PornTubeIE(FourTubeBaseIE):
|
|
|
|
'title': title,
|
|
|
|
'title': title,
|
|
|
|
'formats': formats,
|
|
|
|
'formats': formats,
|
|
|
|
'thumbnail': thumbnail,
|
|
|
|
'thumbnail': thumbnail,
|
|
|
|
'uploader': uploader,
|
|
|
|
'uploader': uploader or channel,
|
|
|
|
'uploader_id': uploader_id,
|
|
|
|
'uploader_id': uploader_id or channel_id,
|
|
|
|
|
|
|
|
'channel': channel,
|
|
|
|
|
|
|
|
'channel_id': channel_id,
|
|
|
|
'timestamp': timestamp,
|
|
|
|
'timestamp': timestamp,
|
|
|
|
'like_count': like_count,
|
|
|
|
'like_count': like_count,
|
|
|
|
'dislike_count': dislike_count,
|
|
|
|
'dislike_count': dislike_count,
|
|
|
|