2021-11-18 22:45:13 +00:00
|
|
|
from .common import InfoExtractor
|
2022-11-06 20:39:09 +00:00
|
|
|
from ..utils import ExtractorError, lowercase_escape, traverse_obj
|
2021-11-18 22:45:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
class StripchatIE(InfoExtractor):
|
2022-07-30 11:35:07 +00:00
|
|
|
_VALID_URL = r'https?://stripchat\.com/(?P<id>[^/?#]+)'
|
2021-11-18 22:45:13 +00:00
|
|
|
_TESTS = [{
|
2022-11-06 20:39:09 +00:00
|
|
|
'url': 'https://stripchat.com/Joselin_Flower',
|
2021-11-18 22:45:13 +00:00
|
|
|
'info_dict': {
|
2022-11-06 20:39:09 +00:00
|
|
|
'id': 'Joselin_Flower',
|
2021-11-18 22:45:13 +00:00
|
|
|
'ext': 'mp4',
|
2022-11-06 20:39:09 +00:00
|
|
|
'title': 're:^Joselin_Flower [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
|
2021-11-18 22:45:13 +00:00
|
|
|
'description': str,
|
|
|
|
'is_live': True,
|
|
|
|
'age_limit': 18,
|
|
|
|
},
|
|
|
|
'skip': 'Room is offline',
|
2022-07-30 11:35:07 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://stripchat.com/Rakhijaan@xh',
|
|
|
|
'only_matching': True
|
2021-11-18 22:45:13 +00:00
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
video_id = self._match_id(url)
|
2022-08-31 15:40:59 +00:00
|
|
|
webpage = self._download_webpage(url, video_id, headers=self.geo_verification_headers())
|
2021-11-18 22:45:13 +00:00
|
|
|
|
|
|
|
data = self._parse_json(
|
|
|
|
self._search_regex(
|
|
|
|
r'<script\b[^>]*>\s*window\.__PRELOADED_STATE__\s*=(?P<value>.*?)<\/script>',
|
|
|
|
webpage, 'data', default='{}', group='value'),
|
|
|
|
video_id, transform_source=lowercase_escape, fatal=False)
|
|
|
|
if not data:
|
|
|
|
raise ExtractorError('Unable to find configuration for stream.')
|
|
|
|
|
2022-11-06 20:39:09 +00:00
|
|
|
if traverse_obj(data, ('viewCam', 'show'), expected_type=dict):
|
2021-11-18 22:45:13 +00:00
|
|
|
raise ExtractorError('Model is in private show', expected=True)
|
2022-11-06 20:39:09 +00:00
|
|
|
elif not traverse_obj(data, ('viewCam', 'model', 'isLive'), expected_type=bool):
|
2021-11-18 22:45:13 +00:00
|
|
|
raise ExtractorError('Model is offline', expected=True)
|
|
|
|
|
2022-11-06 20:39:09 +00:00
|
|
|
server = traverse_obj(data, ('viewCam', 'viewServers', 'flashphoner-hls'), expected_type=str)
|
|
|
|
model_id = traverse_obj(data, ('viewCam', 'model', 'id'), expected_type=int)
|
|
|
|
|
2022-11-08 06:44:47 +00:00
|
|
|
formats = []
|
2022-11-06 20:39:09 +00:00
|
|
|
for host in traverse_obj(data, (
|
|
|
|
'config', 'data', (('featuresV2', 'hlsFallback', 'fallbackDomains', ...), 'hlsStreamHost'))):
|
|
|
|
formats = self._extract_m3u8_formats(
|
|
|
|
f'https://b-{server}.{host}/hls/{model_id}/{model_id}.m3u8',
|
|
|
|
video_id, ext='mp4', m3u8_id='hls', fatal=False, live=True)
|
|
|
|
if formats:
|
|
|
|
break
|
2022-11-08 06:44:47 +00:00
|
|
|
if not formats:
|
|
|
|
self.raise_no_formats('No active streams found', expected=True)
|
2021-11-18 22:45:13 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
2021-12-15 16:00:46 +00:00
|
|
|
'title': video_id,
|
2021-11-18 22:45:13 +00:00
|
|
|
'description': self._og_search_description(webpage),
|
|
|
|
'is_live': True,
|
|
|
|
'formats': formats,
|
|
|
|
# Stripchat declares the RTA meta-tag, but in an non-standard format so _rta_search() can't be used
|
|
|
|
'age_limit': 18,
|
|
|
|
}
|