mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-01-25 21:00:10 +09:00
345 lines
13 KiB
Python
345 lines
13 KiB
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
import itertools
|
|
import re
|
|
|
|
from .common import InfoExtractor
|
|
from ..compat import compat_urlparse
|
|
from ..utils import (
|
|
determine_ext,
|
|
extract_attributes,
|
|
ExtractorError,
|
|
get_element_by_class,
|
|
get_element_by_id,
|
|
merge_dicts,
|
|
parse_duration,
|
|
parse_resolution,
|
|
str_to_int,
|
|
url_or_none,
|
|
urlencode_postdata,
|
|
urljoin,
|
|
)
|
|
|
|
|
|
class SpankBangIE(InfoExtractor):
|
|
_VALID_URL = r'''(?x)
|
|
https?://
|
|
(?:[^/]+\.)?spankbang\.com/
|
|
(?:
|
|
(?P<id>[\da-z]+)/(?:video|play|embed)\b|
|
|
[\da-z]+-(?P<id_2>[\da-z]+)/playlist/[^/?#&]+
|
|
)
|
|
'''
|
|
_TESTS = [{
|
|
'url': 'https://spankbang.com/56b3d/video/the+slut+maker+hmv',
|
|
'md5': '5039ba9d26f6124a7fdea6df2f21e765',
|
|
'info_dict': {
|
|
'id': '56b3d',
|
|
'ext': 'mp4',
|
|
'title': 'The Slut Maker HMV',
|
|
'description': 'Girls getting converted into cock slaves.',
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
|
'uploader': 'Mindself',
|
|
'uploader_id': 'mindself',
|
|
'timestamp': 1617109572,
|
|
'upload_date': '20210330',
|
|
'age_limit': 18,
|
|
},
|
|
'params': {
|
|
# adaptive download
|
|
'skip_download': True,
|
|
},
|
|
}, {
|
|
# 480p only
|
|
'url': 'http://spankbang.com/1vt0/video/solvane+gangbang',
|
|
'only_matching': True,
|
|
}, {
|
|
# no uploader
|
|
'url': 'http://spankbang.com/lklg/video/sex+with+anyone+wedding+edition+2',
|
|
'only_matching': True,
|
|
}, {
|
|
# mobile page
|
|
'url': 'http://m.spankbang.com/1o2de/video/can+t+remember+her+name',
|
|
'only_matching': True,
|
|
}, {
|
|
# 4k
|
|
'url': 'https://spankbang.com/1vwqx/video/jade+kush+solo+4k',
|
|
'only_matching': True,
|
|
}, {
|
|
'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,
|
|
}, {
|
|
'url': 'https://spankbang.com/2v7ik-7ecbgu/playlist/latina+booty',
|
|
'only_matching': True,
|
|
}]
|
|
|
|
def _real_extract(self, url):
|
|
mobj = re.match(self._VALID_URL, url)
|
|
video_id = mobj.group('id') or mobj.group('id_2')
|
|
webpage = self._download_webpage(
|
|
url.replace('/%s/embed' % video_id, '/%s/video' % video_id),
|
|
video_id, headers={'Cookie': 'country=US'})
|
|
|
|
if re.search(r'<[^>]+\b(?:id|class)=["\']video_removed', webpage):
|
|
raise ExtractorError(
|
|
'Video %s is not available' % video_id, expected=True)
|
|
|
|
formats = []
|
|
|
|
def extract_format(format_id, format_url):
|
|
f_url = url_or_none(format_url)
|
|
if not f_url:
|
|
return
|
|
f = parse_resolution(format_id)
|
|
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)
|
|
|
|
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,
|
|
'X-Requested-With': 'XMLHttpRequest',
|
|
})
|
|
|
|
for format_id, format_url in stream.items():
|
|
if format_url and isinstance(format_url, list):
|
|
format_url = format_url[0]
|
|
extract_format(format_id, format_url)
|
|
|
|
self._sort_formats(formats, field_preference=('preference', 'height', 'width', 'fps', 'tbr', 'format_id'))
|
|
|
|
info = self._search_json_ld(webpage, video_id, default={})
|
|
|
|
title = self._html_search_regex(
|
|
r'(?s)<h1[^>]+\btitle=["\']([^"]+)["\']>', webpage, 'title', default=None)
|
|
description = self._search_regex(
|
|
r'<div[^>]+\bclass=["\']bottom[^>]+>\s*<p>[^<]*</p>\s*<p>([^<]+)',
|
|
webpage, 'description', default=None)
|
|
thumbnail = self._og_search_thumbnail(webpage, default=None)
|
|
uploader = self._html_search_regex(
|
|
r'<svg[^>]+\bclass="(?:[^"]*?user[^"]*?)">.*?</svg>([^<]+)', webpage, 'uploader', default=None)
|
|
uploader_id = self._html_search_regex(
|
|
r'<a[^>]+href="/profile/([^"]+)"', webpage, 'uploader_id', default=None)
|
|
duration = parse_duration(self._search_regex(
|
|
r'<div[^>]+\bclass=["\']right_side[^>]+>\s*<span>([^<]+)',
|
|
webpage, 'duration', default=None))
|
|
view_count = str_to_int(self._search_regex(
|
|
r'([\d,.]+)\s+plays', webpage, 'view count', default=None))
|
|
|
|
age_limit = self._rta_search(webpage)
|
|
|
|
return merge_dicts({
|
|
'id': video_id,
|
|
'title': title or video_id,
|
|
'description': description,
|
|
'thumbnail': thumbnail,
|
|
'uploader': uploader,
|
|
'uploader_id': uploader_id,
|
|
'duration': duration,
|
|
'view_count': view_count,
|
|
'formats': formats,
|
|
'age_limit': age_limit,
|
|
}, info
|
|
)
|
|
|
|
|
|
class SpankBangPlaylistIE(InfoExtractor):
|
|
_VALID_URL = r'https?://(?:[^/]+\.)?spankbang\.com/(?P<id>[\da-z]+)/playlist/(?P<display_id>[^/]+)'
|
|
_TESTS = [{
|
|
'url': 'https://spankbang.com/ug0k/playlist/big+ass+titties',
|
|
'info_dict': {
|
|
'id': 'ug0k',
|
|
'title': 'Big Ass Titties',
|
|
'description': 'md5:65b01bb13a9276cf172a67a41304bafd',
|
|
},
|
|
'playlist_mincount': 35,
|
|
}, {
|
|
# pagination required
|
|
'url': 'https://spankbang.com/51wxk/playlist/dance',
|
|
'info_dict': {
|
|
'id': '51wxk',
|
|
'title': 'Dance',
|
|
'description': 'md5:7aae6991c65d561a9319ecab31f857e2',
|
|
},
|
|
'playlist_mincount': 60,
|
|
}]
|
|
|
|
def _entries(self, url, playlist_id, webpage=None):
|
|
for ii in itertools.count(1):
|
|
if not webpage:
|
|
webpage = self._download_webpage(
|
|
url, playlist_id,
|
|
note='Downloading playlist page %d' % (ii, ),
|
|
fatal=False)
|
|
if not webpage:
|
|
break
|
|
# search <main id="container">...</main>.innerHTML
|
|
for mobj in re.finditer(
|
|
r'''<a\b[^>]*?\bclass\s*=\s*('|")(?:(?:(?!\1).)+?\s)?\s*thumb\b[^>]*>''',
|
|
get_element_by_id('container', webpage) or webpage):
|
|
item_url = extract_attributes(mobj.group(0)).get('href')
|
|
if item_url:
|
|
yield urljoin(url, item_url)
|
|
next_url = self._search_regex(
|
|
r'''\bhref\s*=\s*(["'])(?P<path>(?!\1).+?)/?\1''',
|
|
get_element_by_class('next', webpage) or '',
|
|
'continuation page', group='path', default=None)
|
|
if next_url is None or next_url in url:
|
|
break
|
|
url, webpage = urljoin(url, next_url), None
|
|
p_url = compat_urlparse.urlparse(url)
|
|
url = compat_urlparse.urlunparse(p_url._replace(path=p_url.path + '/'))
|
|
|
|
def _get_title(self, list_id, webpage, url):
|
|
return self._html_search_regex(
|
|
r'<h1>([^<]+)\s+playlist\s*<', webpage, 'playlist title',
|
|
fatal=False) or re.sub(r'(\w)\+(\w)', r'\1 \2', list_id).title()
|
|
|
|
def _real_extract(self, url):
|
|
mobj = re.match(self._VALID_URL, url).groupdict()
|
|
playlist_id = mobj['id']
|
|
display_id = mobj.get('display_id') or playlist_id
|
|
related = mobj.get('related')
|
|
|
|
webpage = self._download_webpage(url, playlist_id)
|
|
|
|
def get_title():
|
|
t = self._get_title(display_id, webpage, url)
|
|
if related:
|
|
t = '%s of %s' % (related.title(), t, )
|
|
return t
|
|
|
|
result = self.playlist_from_matches(self._entries(url, playlist_id, webpage), playlist_id, get_title(), ie=SpankBangIE.ie_key())
|
|
description = self._html_search_meta(('description', 'og:description'), webpage)
|
|
if description:
|
|
result['description'] = description
|
|
return result
|
|
|
|
|
|
class SpankBangListIE(SpankBangPlaylistIE):
|
|
_VALID_URL = r'''(?x)
|
|
https?://(?:[^/]+\.)?spankbang\.com/
|
|
(?:
|
|
category|tag|s|
|
|
[^/]+/channel|
|
|
[^/]+/pornstar|
|
|
(?P<profile>profile)
|
|
)/(?P<id>[^/?#]+)(?(profile)/(?P<related>videos|likes|playlists)?|)'''
|
|
_TESTS = [{
|
|
'url': 'https://spankbang.com/category/striptease/?p=d',
|
|
'info_dict': {
|
|
'id': 'striptease',
|
|
'title': 'Category: Striptease Porn (Jun 2022) - Joi & Strip (today)',
|
|
'description': 'md5:d4580b5fc1e8fae9f627178964989959',
|
|
},
|
|
'playlist_mincount': 1,
|
|
}, {
|
|
'url': 'https://spankbang.com/tag/monty/',
|
|
'info_dict': {
|
|
'id': 'monty',
|
|
'title': 'Tag: Monty Porn - Jenni Lee & British',
|
|
'description': 'md5:93535d53455f10b934034bfb9562de35',
|
|
},
|
|
'playlist_mincount': 40,
|
|
}, {
|
|
'url': 'https://spankbang.com/s/silly/?q=fhd&d=10',
|
|
'info_dict': {
|
|
'id': 'silly',
|
|
'title': 'Search: Silly HD Porn - Chubby Teens & Cum Swallow (FHD, 10+ mins)',
|
|
'description': 'md5:a241b24847f1efd7cc3cfc4ef2b22429',
|
|
},
|
|
'playlist_mincount': 20,
|
|
}, {
|
|
'url': 'https://spankbang.com/er/channel/purexxxfilms/?o=new',
|
|
'info_dict': {
|
|
'id': 'purexxxfilms',
|
|
'title': 'PureXXXFilms Channel (new)',
|
|
'description': 'md5:bb61fbf523511f3bd15aea0360bdbdc0',
|
|
},
|
|
'playlist_mincount': 65,
|
|
}, {
|
|
'url': 'https://spankbang.com/5pj/pornstar/promise/',
|
|
'info_dict': {
|
|
'id': 'promise',
|
|
'title': 'Promise Pornstar Page',
|
|
'description': 'md5:ff08a6ac2d6cd1225f0fae74ac896d63',
|
|
},
|
|
'playlist_mincount': 90,
|
|
}, {
|
|
'url': 'https://spankbang.com/profile/migouche/likes',
|
|
'info_dict': {
|
|
'id': 'migouche',
|
|
'title': 'Likes of migouche Profile',
|
|
'description': 'md5:b97540209879a62cadf2af6b0934bbc9',
|
|
},
|
|
'playlist_mincount': 2,
|
|
},
|
|
]
|
|
|
|
def _get_title(self, list_id, webpage, url):
|
|
title = (
|
|
self._og_search_title(webpage, default=None)
|
|
or self._html_search_regex(
|
|
r'<title\b[^>]*>([^<]+)</title', webpage, 'channel title',
|
|
fatal=False))
|
|
if title:
|
|
title = re.sub(r'\s*(?:&\s+(?:Porn\s+))?(?:Videos\s+)?[@-]\s*SpankBang\s*$', '', title)
|
|
title = title or re.sub(r'(\w)\+(\w)', r'\1 \2', list_id).title()
|
|
qs = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query)
|
|
quals = []
|
|
for q in ('o', 'q', 'd', 'p'):
|
|
v = qs.get(q, [None])[-1]
|
|
if not v:
|
|
continue
|
|
if q == 'q':
|
|
v = v.upper()
|
|
elif q == 'd':
|
|
v += '+ mins'
|
|
elif q == 'p':
|
|
v = {'d': 'today', 'w': 'this week', 'm': 'this month', 'y': 'this year'}.get(v, v)
|
|
quals.append(v)
|
|
quals = ', '.join(quals)
|
|
if quals:
|
|
title += ' (%s)' % (quals, )
|
|
m = re.search(r'/(category|tag|s)/', url)
|
|
if m:
|
|
pfx = m.group(1)
|
|
if pfx == 's':
|
|
pfx = 'search'
|
|
title = '%s: %s' % (pfx.title(), title)
|
|
return title
|