2015-04-05 19:50:21 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
2015-04-06 15:24:17 +00:00
|
|
|
from .common import InfoExtractor
|
2018-03-02 16:39:20 +00:00
|
|
|
from ..utils import (
|
2019-12-31 15:16:39 +00:00
|
|
|
determine_ext,
|
2018-03-02 16:39:20 +00:00
|
|
|
ExtractorError,
|
2019-07-13 17:21:39 +00:00
|
|
|
merge_dicts,
|
2018-03-02 16:39:20 +00:00
|
|
|
parse_duration,
|
|
|
|
parse_resolution,
|
|
|
|
str_to_int,
|
2019-03-02 23:25:45 +00:00
|
|
|
url_or_none,
|
|
|
|
urlencode_postdata,
|
2020-12-26 14:58:26 +00:00
|
|
|
urljoin,
|
2018-03-02 16:39:20 +00:00
|
|
|
)
|
2015-04-06 15:24:17 +00:00
|
|
|
|
|
|
|
|
2015-04-05 19:50:21 +00:00
|
|
|
class SpankBangIE(InfoExtractor):
|
2020-12-26 14:55:12 +00:00
|
|
|
_VALID_URL = r'''(?x)
|
|
|
|
https?://
|
|
|
|
(?:[^/]+\.)?spankbang\.com/
|
|
|
|
(?:
|
|
|
|
(?P<id>[\da-z]+)/(?:video|play|embed)\b|
|
|
|
|
[\da-z]+-(?P<id_2>[\da-z]+)/playlist/[^/?#&]+
|
|
|
|
)
|
|
|
|
'''
|
2016-02-05 16:16:56 +00:00
|
|
|
_TESTS = [{
|
2015-04-06 15:24:17 +00:00
|
|
|
'url': 'http://spankbang.com/3vvn/video/fantasy+solo',
|
|
|
|
'md5': '1cc433e1d6aa14bc376535b8679302f7',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '3vvn',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'fantasy solo',
|
2018-03-02 16:39:20 +00:00
|
|
|
'description': 'dillion harper masturbates on a bed',
|
2017-01-02 12:08:07 +00:00
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
2015-04-06 15:24:17 +00:00
|
|
|
'uploader': 'silly2587',
|
2019-07-13 17:21:39 +00:00
|
|
|
'timestamp': 1422571989,
|
|
|
|
'upload_date': '20150129',
|
2015-04-06 15:24:17 +00:00
|
|
|
'age_limit': 18,
|
2015-04-05 20:57:59 +00:00
|
|
|
}
|
2016-02-05 16:16:56 +00:00
|
|
|
}, {
|
|
|
|
# 480p only
|
|
|
|
'url': 'http://spankbang.com/1vt0/video/solvane+gangbang',
|
|
|
|
'only_matching': True,
|
2017-02-20 17:54:43 +00:00
|
|
|
}, {
|
|
|
|
# no uploader
|
|
|
|
'url': 'http://spankbang.com/lklg/video/sex+with+anyone+wedding+edition+2',
|
|
|
|
'only_matching': True,
|
2017-11-16 18:05:04 +00:00
|
|
|
}, {
|
|
|
|
# mobile page
|
|
|
|
'url': 'http://m.spankbang.com/1o2de/video/can+t+remember+her+name',
|
|
|
|
'only_matching': True,
|
2018-03-02 16:39:20 +00:00
|
|
|
}, {
|
|
|
|
# 4k
|
|
|
|
'url': 'https://spankbang.com/1vwqx/video/jade+kush+solo+4k',
|
|
|
|
'only_matching': True,
|
2019-02-07 16:57:58 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://m.spankbang.com/3vvn/play/fantasy+solo/480p/',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'https://m.spankbang.com/3vvn/play',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'https://spankbang.com/2y3td/embed/',
|
|
|
|
'only_matching': True,
|
2020-12-26 14:55:12 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://spankbang.com/2v7ik-7ecbgu/playlist/latina+booty',
|
|
|
|
'only_matching': True,
|
2016-02-05 16:16:56 +00:00
|
|
|
}]
|
2015-04-05 19:50:21 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2020-12-26 14:55:12 +00:00
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
video_id = mobj.group('id') or mobj.group('id_2')
|
2019-02-07 16:57:58 +00:00
|
|
|
webpage = self._download_webpage(
|
|
|
|
url.replace('/%s/embed' % video_id, '/%s/video' % video_id),
|
|
|
|
video_id, headers={'Cookie': 'country=US'})
|
2015-04-05 19:50:21 +00:00
|
|
|
|
2019-12-31 15:18:01 +00:00
|
|
|
if re.search(r'<[^>]+\b(?:id|class)=["\']video_removed', webpage):
|
2017-10-31 16:05:25 +00:00
|
|
|
raise ExtractorError(
|
|
|
|
'Video %s is not available' % video_id, expected=True)
|
|
|
|
|
2018-03-02 16:39:20 +00:00
|
|
|
formats = []
|
2019-03-02 23:25:45 +00:00
|
|
|
|
|
|
|
def extract_format(format_id, format_url):
|
|
|
|
f_url = url_or_none(format_url)
|
|
|
|
if not f_url:
|
|
|
|
return
|
2018-03-02 16:39:20 +00:00
|
|
|
f = parse_resolution(format_id)
|
2019-12-31 15:16:39 +00:00
|
|
|
ext = determine_ext(f_url)
|
|
|
|
if format_id.startswith('m3u8') or ext == 'm3u8':
|
|
|
|
formats.extend(self._extract_m3u8_formats(
|
|
|
|
f_url, video_id, 'mp4', entry_protocol='m3u8_native',
|
|
|
|
m3u8_id='hls', fatal=False))
|
|
|
|
elif format_id.startswith('mpd') or ext == 'mpd':
|
|
|
|
formats.extend(self._extract_mpd_formats(
|
|
|
|
f_url, video_id, mpd_id='dash', fatal=False))
|
|
|
|
elif ext == 'mp4' or f.get('width') or f.get('height'):
|
|
|
|
f.update({
|
|
|
|
'url': f_url,
|
|
|
|
'format_id': format_id,
|
|
|
|
})
|
|
|
|
formats.append(f)
|
2019-03-02 23:25:45 +00:00
|
|
|
|
|
|
|
STREAM_URL_PREFIX = 'stream_url_'
|
|
|
|
|
|
|
|
for mobj in re.finditer(
|
|
|
|
r'%s(?P<id>[^\s=]+)\s*=\s*(["\'])(?P<url>(?:(?!\2).)+)\2'
|
|
|
|
% STREAM_URL_PREFIX, webpage):
|
|
|
|
extract_format(mobj.group('id', 'url'))
|
|
|
|
|
|
|
|
if not formats:
|
|
|
|
stream_key = self._search_regex(
|
|
|
|
r'data-streamkey\s*=\s*(["\'])(?P<value>(?:(?!\1).)+)\1',
|
|
|
|
webpage, 'stream key', group='value')
|
|
|
|
|
|
|
|
stream = self._download_json(
|
|
|
|
'https://spankbang.com/api/videos/stream', video_id,
|
|
|
|
'Downloading stream JSON', data=urlencode_postdata({
|
|
|
|
'id': stream_key,
|
|
|
|
'data': 0,
|
|
|
|
}), headers={
|
|
|
|
'Referer': url,
|
2019-12-31 15:16:39 +00:00
|
|
|
'X-Requested-With': 'XMLHttpRequest',
|
2019-03-02 23:25:45 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
for format_id, format_url in stream.items():
|
2019-12-31 15:16:39 +00:00
|
|
|
if format_url and isinstance(format_url, list):
|
|
|
|
format_url = format_url[0]
|
|
|
|
extract_format(format_id, format_url)
|
2019-03-02 23:25:45 +00:00
|
|
|
|
2019-12-31 15:16:39 +00:00
|
|
|
self._sort_formats(formats, field_preference=('preference', 'height', 'width', 'fps', 'tbr', 'format_id'))
|
2015-04-06 15:24:17 +00:00
|
|
|
|
2019-07-13 17:21:39 +00:00
|
|
|
info = self._search_json_ld(webpage, video_id, default={})
|
|
|
|
|
2015-04-06 15:24:17 +00:00
|
|
|
title = self._html_search_regex(
|
2019-07-13 17:21:39 +00:00
|
|
|
r'(?s)<h1[^>]*>(.+?)</h1>', webpage, 'title', default=None)
|
2018-03-02 16:39:20 +00:00
|
|
|
description = self._search_regex(
|
|
|
|
r'<div[^>]+\bclass=["\']bottom[^>]+>\s*<p>[^<]*</p>\s*<p>([^<]+)',
|
2019-07-13 17:21:39 +00:00
|
|
|
webpage, 'description', default=None)
|
|
|
|
thumbnail = self._og_search_thumbnail(webpage, default=None)
|
|
|
|
uploader = self._html_search_regex(
|
|
|
|
(r'(?s)<li[^>]+class=["\']profile[^>]+>(.+?)</a>',
|
|
|
|
r'class="user"[^>]*><img[^>]+>([^<]+)'),
|
2017-02-20 17:54:43 +00:00
|
|
|
webpage, 'uploader', default=None)
|
2018-03-02 16:39:20 +00:00
|
|
|
duration = parse_duration(self._search_regex(
|
|
|
|
r'<div[^>]+\bclass=["\']right_side[^>]+>\s*<span>([^<]+)',
|
2019-07-13 17:21:39 +00:00
|
|
|
webpage, 'duration', default=None))
|
2018-03-02 16:39:20 +00:00
|
|
|
view_count = str_to_int(self._search_regex(
|
2019-07-13 17:21:39 +00:00
|
|
|
r'([\d,.]+)\s+plays', webpage, 'view count', default=None))
|
2015-04-06 15:24:17 +00:00
|
|
|
|
|
|
|
age_limit = self._rta_search(webpage)
|
2015-04-05 19:50:21 +00:00
|
|
|
|
2019-07-13 17:21:39 +00:00
|
|
|
return merge_dicts({
|
2015-04-06 15:24:17 +00:00
|
|
|
'id': video_id,
|
2019-07-13 17:21:39 +00:00
|
|
|
'title': title or video_id,
|
2015-04-06 15:24:17 +00:00
|
|
|
'description': description,
|
|
|
|
'thumbnail': thumbnail,
|
|
|
|
'uploader': uploader,
|
2018-03-02 16:39:20 +00:00
|
|
|
'duration': duration,
|
|
|
|
'view_count': view_count,
|
2015-04-06 15:24:17 +00:00
|
|
|
'formats': formats,
|
|
|
|
'age_limit': age_limit,
|
2019-07-13 17:21:39 +00:00
|
|
|
}, info
|
|
|
|
)
|
2019-02-07 17:09:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SpankBangPlaylistIE(InfoExtractor):
|
2020-12-26 14:58:26 +00:00
|
|
|
_VALID_URL = r'https?://(?:[^/]+\.)?spankbang\.com/(?P<id>[\da-z]+)/playlist/(?P<display_id>[^/]+)'
|
2019-02-07 17:09:50 +00:00
|
|
|
_TEST = {
|
|
|
|
'url': 'https://spankbang.com/ug0k/playlist/big+ass+titties',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'ug0k',
|
|
|
|
'title': 'Big Ass Titties',
|
|
|
|
},
|
2020-12-26 14:58:26 +00:00
|
|
|
'playlist_mincount': 40,
|
2019-02-07 17:09:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2020-12-26 14:58:26 +00:00
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
playlist_id = mobj.group('id')
|
|
|
|
display_id = mobj.group('display_id')
|
2019-02-07 17:09:50 +00:00
|
|
|
|
|
|
|
webpage = self._download_webpage(
|
|
|
|
url, playlist_id, headers={'Cookie': 'country=US; mobile=on'})
|
|
|
|
|
|
|
|
entries = [self.url_result(
|
2020-12-26 14:58:26 +00:00
|
|
|
urljoin(url, mobj.group('path')),
|
|
|
|
ie=SpankBangIE.ie_key(), video_id=mobj.group('id'))
|
|
|
|
for mobj in re.finditer(
|
|
|
|
r'<a[^>]+\bhref=(["\'])(?P<path>/?[\da-z]+-(?P<id>[\da-z]+)/playlist/%s(?:(?!\1).)*)\1'
|
|
|
|
% re.escape(display_id), webpage)]
|
2019-02-07 17:09:50 +00:00
|
|
|
|
|
|
|
title = self._html_search_regex(
|
2020-12-26 14:58:26 +00:00
|
|
|
r'<h1>([^<]+)\s+playlist\s*<', webpage, 'playlist title',
|
2019-02-07 17:09:50 +00:00
|
|
|
fatal=False)
|
|
|
|
|
|
|
|
return self.playlist_result(entries, playlist_id, title)
|