mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-26 09:11:25 +01:00
Compare commits
12 Commits
447e063c45
...
67694be81f
Author | SHA1 | Date | |
---|---|---|---|
|
67694be81f | ||
|
f2a4983df7 | ||
|
bacc31b05a | ||
|
501c9d5267 | ||
|
9d4497e13e | ||
|
dcd2e93fa0 | ||
|
02f4b25227 | ||
|
388dc541da | ||
|
d9fd3dbdfa | ||
|
d92f6fbaea | ||
|
ee838b418c | ||
|
7c97ead1b0 |
|
@ -1869,6 +1869,10 @@ The following extractors use this feature:
|
||||||
#### digitalconcerthall
|
#### digitalconcerthall
|
||||||
* `prefer_combined_hls`: Prefer extracting combined/pre-merged video and audio HLS formats. This will exclude 4K/HEVC video and lossless/FLAC audio formats, which are only available as split video/audio HLS formats
|
* `prefer_combined_hls`: Prefer extracting combined/pre-merged video and audio HLS formats. This will exclude 4K/HEVC video and lossless/FLAC audio formats, which are only available as split video/audio HLS formats
|
||||||
|
|
||||||
|
#### rplaylive
|
||||||
|
|
||||||
|
* `jwt_token`: JWT token that can be found as value of `_AUTHORIZATION_` entry from the browser local storage. This can be used as an alternative login method.
|
||||||
|
|
||||||
**Note**: These options may be changed/removed in the future without concern for backward compatibility
|
**Note**: These options may be changed/removed in the future without concern for backward compatibility
|
||||||
|
|
||||||
<!-- MANPAGE: MOVE "INSTALLATION" SECTION HERE -->
|
<!-- MANPAGE: MOVE "INSTALLATION" SECTION HERE -->
|
||||||
|
|
|
@ -1736,6 +1736,11 @@ from .rozhlas import (
|
||||||
RozhlasIE,
|
RozhlasIE,
|
||||||
RozhlasVltavaIE,
|
RozhlasVltavaIE,
|
||||||
)
|
)
|
||||||
|
from .rplaylive import (
|
||||||
|
RPlayLiveIE,
|
||||||
|
RPlayUserIE,
|
||||||
|
RPlayVideoIE,
|
||||||
|
)
|
||||||
from .rte import (
|
from .rte import (
|
||||||
RteIE,
|
RteIE,
|
||||||
RteRadioIE,
|
RteRadioIE,
|
||||||
|
|
|
@ -205,6 +205,26 @@ class ArchiveOrgIE(InfoExtractor):
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
}, {
|
||||||
|
# The reviewbody is None for one of the reviews; just need to extract data without crashing
|
||||||
|
'url': 'https://archive.org/details/gd95-04-02.sbd.11622.sbeok.shnf/gd95-04-02d1t04.shn',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'gd95-04-02.sbd.11622.sbeok.shnf/gd95-04-02d1t04.shn',
|
||||||
|
'ext': 'mp3',
|
||||||
|
'title': 'Stuck Inside of Mobile with the Memphis Blues Again',
|
||||||
|
'creators': ['Grateful Dead'],
|
||||||
|
'duration': 338.31,
|
||||||
|
'track': 'Stuck Inside of Mobile with the Memphis Blues Again',
|
||||||
|
'description': 'md5:764348a470b986f1217ffd38d6ac7b72',
|
||||||
|
'display_id': 'gd95-04-02d1t04.shn',
|
||||||
|
'location': 'Pyramid Arena',
|
||||||
|
'uploader': 'jon@archive.org',
|
||||||
|
'album': '1995-04-02 - Pyramid Arena',
|
||||||
|
'upload_date': '20040519',
|
||||||
|
'track_number': 4,
|
||||||
|
'release_date': '19950402',
|
||||||
|
'timestamp': 1084927901,
|
||||||
|
},
|
||||||
}]
|
}]
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
@ -335,7 +355,7 @@ class ArchiveOrgIE(InfoExtractor):
|
||||||
info['comments'].append({
|
info['comments'].append({
|
||||||
'id': review.get('review_id'),
|
'id': review.get('review_id'),
|
||||||
'author': review.get('reviewer'),
|
'author': review.get('reviewer'),
|
||||||
'text': str_or_none(review.get('reviewtitle'), '') + '\n\n' + review.get('reviewbody'),
|
'text': join_nonempty('reviewtitle', 'reviewbody', from_dict=review, delim='\n\n'),
|
||||||
'timestamp': unified_timestamp(review.get('createdate')),
|
'timestamp': unified_timestamp(review.get('createdate')),
|
||||||
'parent': 'root'})
|
'parent': 'root'})
|
||||||
|
|
||||||
|
|
|
@ -563,13 +563,13 @@ class FacebookIE(InfoExtractor):
|
||||||
return extract_video_data(try_get(
|
return extract_video_data(try_get(
|
||||||
js_data, lambda x: x['jsmods']['instances'], list) or [])
|
js_data, lambda x: x['jsmods']['instances'], list) or [])
|
||||||
|
|
||||||
def extract_dash_manifest(video, formats):
|
def extract_dash_manifest(vid_data, formats, mpd_url=None):
|
||||||
dash_manifest = traverse_obj(
|
dash_manifest = traverse_obj(
|
||||||
video, 'dash_manifest', 'playlist', 'dash_manifest_xml_string', expected_type=str)
|
vid_data, 'dash_manifest', 'playlist', 'dash_manifest_xml_string', 'manifest_xml', expected_type=str)
|
||||||
if dash_manifest:
|
if dash_manifest:
|
||||||
formats.extend(self._parse_mpd_formats(
|
formats.extend(self._parse_mpd_formats(
|
||||||
compat_etree_fromstring(urllib.parse.unquote_plus(dash_manifest)),
|
compat_etree_fromstring(urllib.parse.unquote_plus(dash_manifest)),
|
||||||
mpd_url=url_or_none(video.get('dash_manifest_url'))))
|
mpd_url=url_or_none(video.get('dash_manifest_url')) or mpd_url))
|
||||||
|
|
||||||
def process_formats(info):
|
def process_formats(info):
|
||||||
# Downloads with browser's User-Agent are rate limited. Working around
|
# Downloads with browser's User-Agent are rate limited. Working around
|
||||||
|
@ -619,9 +619,12 @@ class FacebookIE(InfoExtractor):
|
||||||
video = video['creation_story']
|
video = video['creation_story']
|
||||||
video['owner'] = traverse_obj(video, ('short_form_video_context', 'video_owner'))
|
video['owner'] = traverse_obj(video, ('short_form_video_context', 'video_owner'))
|
||||||
video.update(reel_info)
|
video.update(reel_info)
|
||||||
fmt_data = traverse_obj(video, ('videoDeliveryLegacyFields', {dict})) or video
|
|
||||||
formats = []
|
formats = []
|
||||||
q = qualities(['sd', 'hd'])
|
q = qualities(['sd', 'hd'])
|
||||||
|
|
||||||
|
# Legacy formats extraction
|
||||||
|
fmt_data = traverse_obj(video, ('videoDeliveryLegacyFields', {dict})) or video
|
||||||
for key, format_id in (('playable_url', 'sd'), ('playable_url_quality_hd', 'hd'),
|
for key, format_id in (('playable_url', 'sd'), ('playable_url_quality_hd', 'hd'),
|
||||||
('playable_url_dash', ''), ('browser_native_hd_url', 'hd'),
|
('playable_url_dash', ''), ('browser_native_hd_url', 'hd'),
|
||||||
('browser_native_sd_url', 'sd')):
|
('browser_native_sd_url', 'sd')):
|
||||||
|
@ -629,7 +632,7 @@ class FacebookIE(InfoExtractor):
|
||||||
if not playable_url:
|
if not playable_url:
|
||||||
continue
|
continue
|
||||||
if determine_ext(playable_url) == 'mpd':
|
if determine_ext(playable_url) == 'mpd':
|
||||||
formats.extend(self._extract_mpd_formats(playable_url, video_id))
|
formats.extend(self._extract_mpd_formats(playable_url, video_id, fatal=False))
|
||||||
else:
|
else:
|
||||||
formats.append({
|
formats.append({
|
||||||
'format_id': format_id,
|
'format_id': format_id,
|
||||||
|
@ -638,6 +641,28 @@ class FacebookIE(InfoExtractor):
|
||||||
'url': playable_url,
|
'url': playable_url,
|
||||||
})
|
})
|
||||||
extract_dash_manifest(fmt_data, formats)
|
extract_dash_manifest(fmt_data, formats)
|
||||||
|
|
||||||
|
# New videoDeliveryResponse formats extraction
|
||||||
|
fmt_data = traverse_obj(video, ('videoDeliveryResponseFragment', 'videoDeliveryResponseResult'))
|
||||||
|
mpd_urls = traverse_obj(fmt_data, ('dash_manifest_urls', ..., 'manifest_url', {url_or_none}))
|
||||||
|
dash_manifests = traverse_obj(fmt_data, ('dash_manifests', lambda _, v: v['manifest_xml']))
|
||||||
|
for idx, dash_manifest in enumerate(dash_manifests):
|
||||||
|
extract_dash_manifest(dash_manifest, formats, mpd_url=traverse_obj(mpd_urls, idx))
|
||||||
|
if not dash_manifests:
|
||||||
|
# Only extract from MPD URLs if the manifests are not already provided
|
||||||
|
for mpd_url in mpd_urls:
|
||||||
|
formats.extend(self._extract_mpd_formats(mpd_url, video_id, fatal=False))
|
||||||
|
for prog_fmt in traverse_obj(fmt_data, ('progressive_urls', lambda _, v: v['progressive_url'])):
|
||||||
|
format_id = traverse_obj(prog_fmt, ('metadata', 'quality', {str.lower}))
|
||||||
|
formats.append({
|
||||||
|
'format_id': format_id,
|
||||||
|
# sd, hd formats w/o resolution info should be deprioritized below DASH
|
||||||
|
'quality': q(format_id) - 3,
|
||||||
|
'url': prog_fmt['progressive_url'],
|
||||||
|
})
|
||||||
|
for m3u8_url in traverse_obj(fmt_data, ('hls_playlist_urls', ..., 'hls_playlist_url', {url_or_none})):
|
||||||
|
formats.extend(self._extract_m3u8_formats(m3u8_url, video_id, 'mp4', fatal=False, m3u8_id='hls'))
|
||||||
|
|
||||||
if not formats:
|
if not formats:
|
||||||
# Do not append false positive entry w/o any formats
|
# Do not append false positive entry w/o any formats
|
||||||
return
|
return
|
||||||
|
|
347
yt_dlp/extractor/rplaylive.py
Normal file
347
yt_dlp/extractor/rplaylive.py
Normal file
|
@ -0,0 +1,347 @@
|
||||||
|
import base64
|
||||||
|
import datetime as dt
|
||||||
|
import hashlib
|
||||||
|
import hmac
|
||||||
|
import json
|
||||||
|
import random
|
||||||
|
import re
|
||||||
|
import time
|
||||||
|
|
||||||
|
from .common import InfoExtractor
|
||||||
|
from ..aes import aes_cbc_encrypt_bytes
|
||||||
|
from ..utils import (
|
||||||
|
ExtractorError,
|
||||||
|
UserNotLive,
|
||||||
|
encode_data_uri,
|
||||||
|
float_or_none,
|
||||||
|
parse_iso8601,
|
||||||
|
parse_qs,
|
||||||
|
traverse_obj,
|
||||||
|
url_or_none,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class RPlayBaseIE(InfoExtractor):
|
||||||
|
_NETRC_MACHINE = 'rplaylive'
|
||||||
|
_TOKEN_CACHE = {}
|
||||||
|
_user_id = None
|
||||||
|
_login_type = None
|
||||||
|
_jwt_token = None
|
||||||
|
_tested_jwt = False
|
||||||
|
|
||||||
|
def _check_jwt_args(self):
|
||||||
|
jwt_arg = self._configuration_arg('jwt_token', ie_key='rplaylive', casesense=True)
|
||||||
|
if self._jwt_token is None and jwt_arg and not self._tested_jwt:
|
||||||
|
self._login_by_token(jwt_arg[0], raw_token_hint=True)
|
||||||
|
self._tested_jwt = True
|
||||||
|
|
||||||
|
@property
|
||||||
|
def user_id(self):
|
||||||
|
self._check_jwt_args()
|
||||||
|
return self._user_id
|
||||||
|
|
||||||
|
@property
|
||||||
|
def login_type(self):
|
||||||
|
self._check_jwt_args()
|
||||||
|
return self._login_type
|
||||||
|
|
||||||
|
@property
|
||||||
|
def jwt_token(self):
|
||||||
|
self._check_jwt_args()
|
||||||
|
return self._jwt_token
|
||||||
|
|
||||||
|
@property
|
||||||
|
def requestor_query(self):
|
||||||
|
return {
|
||||||
|
'requestorOid': self.user_id,
|
||||||
|
'loginType': self.login_type,
|
||||||
|
} if self.user_id else {}
|
||||||
|
|
||||||
|
@property
|
||||||
|
def jwt_header(self):
|
||||||
|
return {
|
||||||
|
'Origin': 'https://rplay.live',
|
||||||
|
'Referer': 'https://rplay.live/',
|
||||||
|
'Authorization': self.jwt_token or 'null',
|
||||||
|
}
|
||||||
|
|
||||||
|
@property
|
||||||
|
def butter_header(self):
|
||||||
|
return {
|
||||||
|
'Origin': 'https://rplay.live',
|
||||||
|
'Referer': 'https://rplay.live/',
|
||||||
|
'Butter': self.get_butter_token(),
|
||||||
|
}
|
||||||
|
|
||||||
|
def _login_hint(self, **kwargs):
|
||||||
|
return (f'Use --username and --password, --netrc-cmd, --netrc ({self._NETRC_MACHINE}) '
|
||||||
|
'or --extractor-args "rplaylive:jwt_token=xxx" to provide account credentials')
|
||||||
|
|
||||||
|
def _jwt_encode_hs256(self, payload: dict, key: str):
|
||||||
|
# yt_dlp.utils.jwt_encode_hs256() uses slightly different details that would fails
|
||||||
|
# and we need to re-implement it with minor changes
|
||||||
|
b64encode = lambda x: base64.urlsafe_b64encode(
|
||||||
|
json.dumps(x, separators=(',', ':')).encode()).strip(b'=')
|
||||||
|
|
||||||
|
header_b64 = b64encode({'alg': 'HS256', 'typ': 'JWT'})
|
||||||
|
payload_b64 = b64encode(payload)
|
||||||
|
h = hmac.new(key.encode(), header_b64 + b'.' + payload_b64, hashlib.sha256)
|
||||||
|
signature_b64 = base64.urlsafe_b64encode(h.digest()).strip(b'=')
|
||||||
|
return header_b64 + b'.' + payload_b64 + b'.' + signature_b64
|
||||||
|
|
||||||
|
def _perform_login(self, username, password):
|
||||||
|
payload = {
|
||||||
|
'eml': username,
|
||||||
|
'dat': dt.datetime.now(dt.timezone.utc).isoformat(timespec='milliseconds').replace('+00:00', 'Z'),
|
||||||
|
'iat': int(time.time()),
|
||||||
|
}
|
||||||
|
key = hashlib.sha256(password.encode()).hexdigest()
|
||||||
|
self._login_by_token(self._jwt_encode_hs256(payload, key).decode())
|
||||||
|
|
||||||
|
def _login_by_token(self, jwt_token, raw_token_hint=False):
|
||||||
|
user_info = self._download_json(
|
||||||
|
'https://api.rplay.live/account/login', 'login', note='performing login', errnote='login failed',
|
||||||
|
data=f'{{"token":"{jwt_token}","loginType":null,"checkAdmin":null}}'.encode(),
|
||||||
|
headers={'Content-Type': 'application/json', 'Authorization': 'null'}, fatal=False)
|
||||||
|
|
||||||
|
if user_info:
|
||||||
|
self._user_id = traverse_obj(user_info, 'oid')
|
||||||
|
self._login_type = traverse_obj(user_info, 'accountType')
|
||||||
|
self._jwt_token = jwt_token if self._user_id else None
|
||||||
|
if not self._user_id:
|
||||||
|
if raw_token_hint:
|
||||||
|
self.report_warning('Login failed, possibly due to wrong or expired JWT token')
|
||||||
|
else:
|
||||||
|
self.report_warning('Login failed, possibly due to wrong password or website change')
|
||||||
|
|
||||||
|
def get_butter_token(self):
|
||||||
|
salt = 'QWI@(!WAS)Dj1AA(!@*DJ#@$@~1)P'
|
||||||
|
key = 'S%M@#H#B(!@()a2@'
|
||||||
|
ts_value = str(int(time.time() / 360))
|
||||||
|
enc = aes_cbc_encrypt_bytes(f'{salt}https://rplay.live{ts_value}', key, ts_value.zfill(16))
|
||||||
|
return enc.hex()
|
||||||
|
|
||||||
|
|
||||||
|
class RPlayVideoIE(RPlayBaseIE):
|
||||||
|
_VALID_URL = r'https://rplay.live/play/(?P<id>[\d\w]+)'
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'https://rplay.live/play/669203d25223214e67579dc3/',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '669203d25223214e67579dc3',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'md5:6ab0a76410b40b1f5fb48a2ad7571264',
|
||||||
|
'description': 'md5:d2fb2f74a623be439cf454df5ff3344a',
|
||||||
|
'timestamp': 1720845266,
|
||||||
|
'upload_date': '20240713',
|
||||||
|
'release_timestamp': 1720846360,
|
||||||
|
'release_date': '20240713',
|
||||||
|
'duration': 5349.0,
|
||||||
|
'thumbnail': 'https://pb.rplay.live/thumbnail/669203d25223214e67579dc3',
|
||||||
|
'uploader': '杏都める',
|
||||||
|
'uploader_id': '667adc9e9aa7f739a2158ff3',
|
||||||
|
'tags': ['杏都める', 'めいどるーちぇ', '無料', '耳舐め', 'ASMR'],
|
||||||
|
},
|
||||||
|
}, {
|
||||||
|
'url': 'https://rplay.live/play/66783c65dcd1c768a8a69f24/',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '66783c65dcd1c768a8a69f24',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'md5:9be2febe48cee1b7536e3e9d4d5f8e56',
|
||||||
|
'description': 'md5:a71374d3dcd1db0f852b96a69b41b699',
|
||||||
|
'timestamp': 1719155813,
|
||||||
|
'upload_date': '20240623',
|
||||||
|
'release_timestamp': 1719155813,
|
||||||
|
'release_date': '20240623',
|
||||||
|
'duration': 4237.0,
|
||||||
|
'thumbnail': 'https://pb.rplay.live/thumbnail/66783c65dcd1c768a8a69f24',
|
||||||
|
'uploader': '狐月れんげ',
|
||||||
|
'uploader_id': '65eeb4b237043dc0b5654f86',
|
||||||
|
'tags': 'count:4',
|
||||||
|
'age_limit': 18,
|
||||||
|
'live_status': 'was_live',
|
||||||
|
},
|
||||||
|
}]
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
video_id = self._match_id(url)
|
||||||
|
|
||||||
|
playlist_id = traverse_obj(parse_qs(url), ('playlist', ..., any))
|
||||||
|
if playlist_id and self._yes_playlist(playlist_id, video_id):
|
||||||
|
playlist_info = self._download_json(
|
||||||
|
'https://api.rplay.live/content/playlist', playlist_id,
|
||||||
|
query={'playlistOid': playlist_id, **self.requestor_query},
|
||||||
|
headers=self.jwt_header, fatal=False)
|
||||||
|
if playlist_info:
|
||||||
|
entries = traverse_obj(playlist_info, ('contentData', ..., '_id', {
|
||||||
|
lambda x: self.url_result(f'https://rplay.live/play/{x}/', ie=RPlayVideoIE, video_id=x)}))
|
||||||
|
return self.playlist_result(entries, playlist_id, playlist_info.get('name'))
|
||||||
|
else:
|
||||||
|
self.report_warning('Failed to get playlist, downloading video only')
|
||||||
|
|
||||||
|
video_info = self._download_json('https://api.rplay.live/content', video_id, query={
|
||||||
|
'contentOid': video_id,
|
||||||
|
'status': 'published',
|
||||||
|
'withComments': True,
|
||||||
|
'requestCanView': True,
|
||||||
|
**self.requestor_query,
|
||||||
|
}, headers=self.jwt_header)
|
||||||
|
if video_info.get('drm'):
|
||||||
|
raise ExtractorError('This video is DRM-protected')
|
||||||
|
|
||||||
|
metainfo = traverse_obj(video_info, {
|
||||||
|
'title': ('title', {str}),
|
||||||
|
'description': ('introText', {str}),
|
||||||
|
'release_timestamp': ('publishedAt', {parse_iso8601}),
|
||||||
|
'timestamp': ('createdAt', {parse_iso8601}),
|
||||||
|
'duration': ('length', {float_or_none}),
|
||||||
|
'uploader': ('creatorInfo', 'nickname', {str}),
|
||||||
|
'uploader_id': ('creatorOid', {str}),
|
||||||
|
'tags': ('hashtags', lambda _, v: v[0] != '_'),
|
||||||
|
'age_limit': (('hideContent', 'isAdultContent'), {lambda x: 18 if x else None}, any),
|
||||||
|
'live_status': ('isReplayContent', {lambda x: 'was_live' if x else None}),
|
||||||
|
})
|
||||||
|
|
||||||
|
m3u8_url = traverse_obj(video_info, ('canView', 'url', {url_or_none}))
|
||||||
|
if not m3u8_url:
|
||||||
|
msg = 'You do not have access to this video'
|
||||||
|
if traverse_obj(video_info, ('viewableTiers', 'free')):
|
||||||
|
msg = 'This video requires a free subscription to access'
|
||||||
|
if not self.user_id:
|
||||||
|
msg += f'. {self._login_hint()}'
|
||||||
|
raise ExtractorError(msg, expected=True)
|
||||||
|
|
||||||
|
formats = self._extract_m3u8_formats(m3u8_url, video_id, headers=self.butter_header)
|
||||||
|
for fmt in formats:
|
||||||
|
m3u8_doc = self._download_webpage(fmt['url'], video_id, 'getting m3u8 contents', headers=self.butter_header)
|
||||||
|
fmt['url'] = encode_data_uri(m3u8_doc.encode(), 'application/x-mpegurl')
|
||||||
|
match = re.search(r'^#EXT-X-KEY.*?URI="([^"]+)"', m3u8_doc, flags=re.M)
|
||||||
|
if match:
|
||||||
|
urlh = self._request_webpage(match[1], video_id, 'getting hls key', headers={
|
||||||
|
'Origin': 'https://rplay.live',
|
||||||
|
'Referer': 'https://rplay.live/',
|
||||||
|
'rplay-private-content-requestor': self.user_id or 'not-logged-in',
|
||||||
|
'age': random.randint(1, 4999),
|
||||||
|
})
|
||||||
|
fmt['hls_aes'] = {'key': urlh.read().hex()}
|
||||||
|
|
||||||
|
return {
|
||||||
|
'id': video_id,
|
||||||
|
'formats': formats,
|
||||||
|
**metainfo,
|
||||||
|
'thumbnail': f'https://pb.rplay.live/thumbnail/{video_id}',
|
||||||
|
'http_headers': {'Referer': 'https://rplay.live/'},
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class RPlayUserIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'https://rplay.live/(?P<short>c|creatorhome)/(?P<id>[\d\w]+)/?(?:[#?]|$)'
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'https://rplay.live/creatorhome/667adc9e9aa7f739a2158ff3?page=contents',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '667adc9e9aa7f739a2158ff3',
|
||||||
|
'title': '杏都める',
|
||||||
|
},
|
||||||
|
'playlist_mincount': 35,
|
||||||
|
}, {
|
||||||
|
'url': 'https://rplay.live/c/furachi',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '65e07e60850f4527aab74757',
|
||||||
|
'title': '逢瀬ふらち OuseFurachi',
|
||||||
|
},
|
||||||
|
'playlist_mincount': 94,
|
||||||
|
}]
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
user_id, short = self._match_valid_url(url).group('id', 'short')
|
||||||
|
|
||||||
|
user_info = self._download_json('https://api.rplay.live/account/getuser', user_id, query={
|
||||||
|
'customUrl' if short == 'c' else 'userOid': user_id, 'options': '{"includeContentMetadata":true}'})
|
||||||
|
replays = self._download_json(
|
||||||
|
'https://api.rplay.live/live/replays', user_id, query={'creatorOid': user_info.get('_id')})
|
||||||
|
|
||||||
|
def _entries():
|
||||||
|
def _entry_ids():
|
||||||
|
for entry in traverse_obj(user_info, ('metadataSet', ..., lambda _, v: v['_id'])):
|
||||||
|
yield entry['_id'], entry.get('title')
|
||||||
|
for entry in traverse_obj(replays, lambda _, v: v['_id']):
|
||||||
|
yield entry['_id'], entry.get('title')
|
||||||
|
for vid, title in dict(_entry_ids()).items():
|
||||||
|
yield self.url_result(f'https://rplay.live/play/{vid}', ie=RPlayVideoIE, id=vid, title=title)
|
||||||
|
|
||||||
|
return self.playlist_result(_entries(), user_info.get('_id', user_id), user_info.get('nickname'))
|
||||||
|
|
||||||
|
|
||||||
|
class RPlayLiveIE(RPlayBaseIE):
|
||||||
|
_VALID_URL = [
|
||||||
|
r'https://rplay.live/(?P<short>c)/(?P<id>[\d\w]+)/live',
|
||||||
|
r'https://rplay.live/(?P<short>live)/(?P<id>[\d\w]+)',
|
||||||
|
]
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'https://rplay.live/c/chachamaru/live',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '667e4cd99aa7f739a2c91852',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': r're:【ASMR】ん~っやば//スキスキ耐久.*',
|
||||||
|
'description': 'md5:7f88ac0a7a3d5d0b926a0baecd1d40e1',
|
||||||
|
'timestamp': 1721739947,
|
||||||
|
'upload_date': '20240723',
|
||||||
|
'live_status': 'is_live',
|
||||||
|
'thumbnail': 'https://pb.rplay.live/liveChannelThumbnails/667e4cd99aa7f739a2c91852',
|
||||||
|
'uploader': '愛犬茶々丸',
|
||||||
|
'uploader_id': '667e4cd99aa7f739a2c91852',
|
||||||
|
'tags': 'count:9',
|
||||||
|
},
|
||||||
|
'skip': 'live',
|
||||||
|
}, {
|
||||||
|
'url': 'https://rplay.live/live/667adc9e9aa7f739a2158ff3',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
user_id, short = self._match_valid_url(url).group('id', 'short')
|
||||||
|
|
||||||
|
user_info = self._download_json('https://api.rplay.live/account/getuser', user_id, query={
|
||||||
|
'customUrl' if short == 'c' else 'userOid': user_id})
|
||||||
|
if user_info.get('isLive') is False:
|
||||||
|
raise UserNotLive
|
||||||
|
user_id = user_info['_id']
|
||||||
|
|
||||||
|
live_info = self._download_json('https://api.rplay.live/live/play', user_id, query={'creatorOid': user_id})
|
||||||
|
|
||||||
|
stream_state = live_info['streamState']
|
||||||
|
if stream_state == 'youtube':
|
||||||
|
return self.url_result(f'https://www.youtube.com/watch?v={live_info["liveStreamId"]}')
|
||||||
|
elif stream_state == 'twitch':
|
||||||
|
return self.url_result(f'https://www.twitch.tv/{live_info["twitchLogin"]}')
|
||||||
|
elif stream_state == 'live':
|
||||||
|
if not self.user_id and not live_info.get('allowAnonymous'):
|
||||||
|
self.raise_login_required(method='password')
|
||||||
|
key2 = traverse_obj(self._download_json(
|
||||||
|
'https://api.rplay.live/live/key2', user_id, 'getting live key',
|
||||||
|
headers=self.jwt_header, query=self.requestor_query), ('authKey', {str})) if self.user_id else ''
|
||||||
|
if key2 is None:
|
||||||
|
raise ExtractorError('Failed to get playlist key')
|
||||||
|
formats = self._extract_m3u8_formats(
|
||||||
|
'https://api.rplay.live/live/stream/playlist.m3u8', user_id,
|
||||||
|
query={'creatorOid': user_id, 'key2': key2}, headers={'Referer': 'https://rplay.live'})
|
||||||
|
|
||||||
|
return {
|
||||||
|
'id': user_id,
|
||||||
|
'formats': formats,
|
||||||
|
'is_live': True,
|
||||||
|
'http_headers': {'Referer': 'https://rplay.live'},
|
||||||
|
'thumbnail': f'https://pb.rplay.live/liveChannelThumbnails/{user_id}',
|
||||||
|
'uploader': traverse_obj(user_info, ('nickname', {str})),
|
||||||
|
'uploader_id': user_id,
|
||||||
|
**traverse_obj(live_info, {
|
||||||
|
'title': ('title', {str}),
|
||||||
|
'description': ('description', {str}),
|
||||||
|
'timestamp': ('streamStartTime', {parse_iso8601}),
|
||||||
|
'tags': ('hashtags', ..., {str}),
|
||||||
|
'age_limit': ('isAdultContent', {lambda x: 18 if x else None}),
|
||||||
|
}),
|
||||||
|
}
|
||||||
|
elif stream_state == 'offline':
|
||||||
|
raise UserNotLive
|
||||||
|
else:
|
||||||
|
raise ExtractorError(f'Unknow streamState: {stream_state}')
|
Loading…
Reference in New Issue
Block a user