2022-01-29 01:33:51 +01:00
|
|
|
|
import base64
|
2024-04-06 12:53:20 +02:00
|
|
|
|
import uuid
|
2022-06-24 10:10:17 +02:00
|
|
|
|
|
2018-09-01 11:04:10 +02:00
|
|
|
|
from .common import InfoExtractor
|
2024-05-23 00:25:07 +02:00
|
|
|
|
from ..networking import Request
|
2023-07-09 09:53:02 +02:00
|
|
|
|
from ..networking.exceptions import HTTPError
|
2014-12-13 12:24:42 +01:00
|
|
|
|
from ..utils import (
|
|
|
|
|
ExtractorError,
|
2018-09-01 09:16:28 +02:00
|
|
|
|
float_or_none,
|
2022-01-29 01:33:51 +01:00
|
|
|
|
format_field,
|
2023-05-24 20:45:15 +02:00
|
|
|
|
int_or_none,
|
2024-04-06 12:53:20 +02:00
|
|
|
|
jwt_decode_hs256,
|
2023-05-24 20:45:15 +02:00
|
|
|
|
parse_age_limit,
|
|
|
|
|
parse_count,
|
2022-08-02 23:18:40 +02:00
|
|
|
|
parse_iso8601,
|
2021-11-04 19:04:37 +01:00
|
|
|
|
qualities,
|
2023-05-24 20:45:15 +02:00
|
|
|
|
time_seconds,
|
2022-01-29 01:33:51 +01:00
|
|
|
|
traverse_obj,
|
2023-05-24 20:45:15 +02:00
|
|
|
|
url_or_none,
|
|
|
|
|
urlencode_postdata,
|
2013-11-04 03:08:17 +01:00
|
|
|
|
)
|
|
|
|
|
|
2014-02-25 14:26:11 +01:00
|
|
|
|
|
2018-09-01 11:04:10 +02:00
|
|
|
|
class CrunchyrollBaseIE(InfoExtractor):
|
2023-05-24 20:45:15 +02:00
|
|
|
|
_BASE_URL = 'https://www.crunchyroll.com'
|
2022-01-31 21:01:17 +01:00
|
|
|
|
_API_BASE = 'https://api.crunchyroll.com'
|
2015-10-18 02:57:57 +02:00
|
|
|
|
_NETRC_MACHINE = 'crunchyroll'
|
2024-05-23 00:25:07 +02:00
|
|
|
|
_SWITCH_USER_AGENT = 'Crunchyroll/1.8.0 Nintendo Switch/12.3.12.0 UE4/4.27'
|
2024-04-22 00:41:40 +02:00
|
|
|
|
_REFRESH_TOKEN = None
|
2023-05-24 20:45:15 +02:00
|
|
|
|
_AUTH_HEADERS = None
|
2024-04-22 00:41:40 +02:00
|
|
|
|
_AUTH_EXPIRY = None
|
2023-05-24 20:45:15 +02:00
|
|
|
|
_API_ENDPOINT = None
|
2024-04-22 00:41:40 +02:00
|
|
|
|
_BASIC_AUTH = 'Basic ' + base64.b64encode(':'.join((
|
|
|
|
|
't-kdgp2h8c3jub8fn0fq',
|
|
|
|
|
'yfLDfMfrYvKXh4JXS1LEI2cCqu1v5Wan',
|
|
|
|
|
)).encode()).decode()
|
2024-04-06 12:53:20 +02:00
|
|
|
|
_IS_PREMIUM = None
|
2023-07-20 22:09:52 +02:00
|
|
|
|
_LOCALE_LOOKUP = {
|
|
|
|
|
'ar': 'ar-SA',
|
|
|
|
|
'de': 'de-DE',
|
|
|
|
|
'': 'en-US',
|
|
|
|
|
'es': 'es-419',
|
|
|
|
|
'es-es': 'es-ES',
|
|
|
|
|
'fr': 'fr-FR',
|
|
|
|
|
'it': 'it-IT',
|
|
|
|
|
'pt-br': 'pt-BR',
|
|
|
|
|
'pt-pt': 'pt-PT',
|
|
|
|
|
'ru': 'ru-RU',
|
|
|
|
|
'hi': 'hi-IN',
|
|
|
|
|
}
|
2017-11-13 19:15:16 +01:00
|
|
|
|
|
2024-04-22 00:41:40 +02:00
|
|
|
|
def _set_auth_info(self, response):
|
|
|
|
|
CrunchyrollBaseIE._IS_PREMIUM = 'cr_premium' in traverse_obj(response, ('access_token', {jwt_decode_hs256}, 'benefits', ...))
|
|
|
|
|
CrunchyrollBaseIE._AUTH_HEADERS = {'Authorization': response['token_type'] + ' ' + response['access_token']}
|
|
|
|
|
CrunchyrollBaseIE._AUTH_EXPIRY = time_seconds(seconds=traverse_obj(response, ('expires_in', {float_or_none}), default=300) - 10)
|
|
|
|
|
|
|
|
|
|
def _request_token(self, headers, data, note='Requesting token', errnote='Failed to request token'):
|
2024-05-06 01:15:32 +02:00
|
|
|
|
try:
|
2024-04-22 00:41:40 +02:00
|
|
|
|
return self._download_json(
|
|
|
|
|
f'{self._BASE_URL}/auth/v1/token', None, note=note, errnote=errnote,
|
2024-05-06 01:15:32 +02:00
|
|
|
|
headers=headers, data=urlencode_postdata(data), impersonate=True)
|
2024-04-22 00:41:40 +02:00
|
|
|
|
except ExtractorError as error:
|
|
|
|
|
if not isinstance(error.cause, HTTPError) or error.cause.status != 403:
|
|
|
|
|
raise
|
2024-05-06 01:15:32 +02:00
|
|
|
|
if target := error.cause.response.extensions.get('impersonate'):
|
|
|
|
|
raise ExtractorError(f'Got HTTP Error 403 when using impersonate target "{target}"')
|
2024-04-22 00:41:40 +02:00
|
|
|
|
raise ExtractorError(
|
2024-05-06 01:15:32 +02:00
|
|
|
|
'Request blocked by Cloudflare. '
|
|
|
|
|
'Install the required impersonation dependency if possible, '
|
|
|
|
|
'or else navigate to Crunchyroll in your browser, '
|
2024-04-22 00:41:40 +02:00
|
|
|
|
'then pass the fresh cookies (with --cookies-from-browser or --cookies) '
|
|
|
|
|
'and your browser\'s User-Agent (with --user-agent)', expected=True)
|
2023-02-13 20:36:38 +01:00
|
|
|
|
|
2022-03-18 21:53:33 +01:00
|
|
|
|
def _perform_login(self, username, password):
|
2024-04-22 00:41:40 +02:00
|
|
|
|
if not CrunchyrollBaseIE._REFRESH_TOKEN:
|
|
|
|
|
CrunchyrollBaseIE._REFRESH_TOKEN = self.cache.load(self._NETRC_MACHINE, username)
|
|
|
|
|
if CrunchyrollBaseIE._REFRESH_TOKEN:
|
2016-09-15 16:53:35 +02:00
|
|
|
|
return
|
|
|
|
|
|
2024-04-22 00:41:40 +02:00
|
|
|
|
try:
|
|
|
|
|
login_response = self._request_token(
|
|
|
|
|
headers={'Authorization': self._BASIC_AUTH}, data={
|
|
|
|
|
'username': username,
|
|
|
|
|
'password': password,
|
|
|
|
|
'grant_type': 'password',
|
|
|
|
|
'scope': 'offline_access',
|
|
|
|
|
}, note='Logging in', errnote='Failed to log in')
|
|
|
|
|
except ExtractorError as error:
|
|
|
|
|
if isinstance(error.cause, HTTPError) and error.cause.status == 401:
|
|
|
|
|
raise ExtractorError('Invalid username and/or password', expected=True)
|
|
|
|
|
raise
|
|
|
|
|
|
|
|
|
|
CrunchyrollBaseIE._REFRESH_TOKEN = login_response['refresh_token']
|
|
|
|
|
self.cache.store(self._NETRC_MACHINE, username, CrunchyrollBaseIE._REFRESH_TOKEN)
|
|
|
|
|
self._set_auth_info(login_response)
|
2015-10-18 02:57:57 +02:00
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
def _update_auth(self):
|
2024-04-22 00:41:40 +02:00
|
|
|
|
if CrunchyrollBaseIE._AUTH_HEADERS and CrunchyrollBaseIE._AUTH_EXPIRY > time_seconds():
|
2023-05-24 20:45:15 +02:00
|
|
|
|
return
|
|
|
|
|
|
2024-04-22 00:41:40 +02:00
|
|
|
|
auth_headers = {'Authorization': self._BASIC_AUTH}
|
|
|
|
|
if CrunchyrollBaseIE._REFRESH_TOKEN:
|
|
|
|
|
data = {
|
|
|
|
|
'refresh_token': CrunchyrollBaseIE._REFRESH_TOKEN,
|
|
|
|
|
'grant_type': 'refresh_token',
|
|
|
|
|
'scope': 'offline_access',
|
|
|
|
|
}
|
2024-04-06 12:53:20 +02:00
|
|
|
|
else:
|
2024-04-22 00:41:40 +02:00
|
|
|
|
data = {'grant_type': 'client_id'}
|
2024-04-06 12:53:20 +02:00
|
|
|
|
auth_headers['ETP-Anonymous-ID'] = uuid.uuid4()
|
2023-07-20 22:09:52 +02:00
|
|
|
|
try:
|
2024-04-22 00:41:40 +02:00
|
|
|
|
auth_response = self._request_token(auth_headers, data)
|
2023-07-20 22:09:52 +02:00
|
|
|
|
except ExtractorError as error:
|
2024-04-22 00:41:40 +02:00
|
|
|
|
username, password = self._get_login_info()
|
|
|
|
|
if not username or not isinstance(error.cause, HTTPError) or error.cause.status != 400:
|
|
|
|
|
raise
|
|
|
|
|
self.to_screen('Refresh token has expired. Re-logging in')
|
|
|
|
|
CrunchyrollBaseIE._REFRESH_TOKEN = None
|
|
|
|
|
self.cache.store(self._NETRC_MACHINE, username, None)
|
|
|
|
|
self._perform_login(username, password)
|
|
|
|
|
return
|
2023-05-24 20:45:15 +02:00
|
|
|
|
|
2024-04-22 00:41:40 +02:00
|
|
|
|
self._set_auth_info(auth_response)
|
2023-05-24 20:45:15 +02:00
|
|
|
|
|
2023-07-20 22:09:52 +02:00
|
|
|
|
def _locale_from_language(self, language):
|
|
|
|
|
config_locale = self._configuration_arg('metadata', ie_key=CrunchyrollBetaIE, casesense=True)
|
|
|
|
|
return config_locale[0] if config_locale else self._LOCALE_LOOKUP.get(language)
|
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
def _call_base_api(self, endpoint, internal_id, lang, note=None, query={}):
|
|
|
|
|
self._update_auth()
|
|
|
|
|
|
|
|
|
|
if not endpoint.startswith('/'):
|
|
|
|
|
endpoint = f'/{endpoint}'
|
|
|
|
|
|
2023-07-20 22:09:52 +02:00
|
|
|
|
query = query.copy()
|
|
|
|
|
locale = self._locale_from_language(lang)
|
|
|
|
|
if locale:
|
|
|
|
|
query['locale'] = locale
|
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
return self._download_json(
|
|
|
|
|
f'{self._BASE_URL}{endpoint}', internal_id, note or f'Calling API: {endpoint}',
|
2023-07-20 22:09:52 +02:00
|
|
|
|
headers=CrunchyrollBaseIE._AUTH_HEADERS, query=query)
|
2023-05-24 20:45:15 +02:00
|
|
|
|
|
|
|
|
|
def _call_api(self, path, internal_id, lang, note='api', query={}):
|
|
|
|
|
if not path.startswith(f'/content/v2/{self._API_ENDPOINT}/'):
|
|
|
|
|
path = f'/content/v2/{self._API_ENDPOINT}/{path}'
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
result = self._call_base_api(
|
|
|
|
|
path, internal_id, lang, f'Downloading {note} JSON ({self._API_ENDPOINT})', query=query)
|
|
|
|
|
except ExtractorError as error:
|
2023-07-09 09:53:02 +02:00
|
|
|
|
if isinstance(error.cause, HTTPError) and error.cause.status == 404:
|
2023-05-24 20:45:15 +02:00
|
|
|
|
return None
|
|
|
|
|
raise
|
|
|
|
|
|
|
|
|
|
if not result:
|
|
|
|
|
raise ExtractorError(f'Unexpected response when downloading {note} JSON')
|
|
|
|
|
return result
|
|
|
|
|
|
2024-04-06 12:53:20 +02:00
|
|
|
|
def _extract_chapters(self, internal_id):
|
|
|
|
|
# if no skip events are available, a 403 xml error is returned
|
|
|
|
|
skip_events = self._download_json(
|
|
|
|
|
f'https://static.crunchyroll.com/skip-events/production/{internal_id}.json',
|
|
|
|
|
internal_id, note='Downloading chapter info', fatal=False, errnote=False)
|
|
|
|
|
if not skip_events:
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
chapters = []
|
|
|
|
|
for event in ('recap', 'intro', 'credits', 'preview'):
|
|
|
|
|
start = traverse_obj(skip_events, (event, 'start', {float_or_none}))
|
|
|
|
|
end = traverse_obj(skip_events, (event, 'end', {float_or_none}))
|
|
|
|
|
# some chapters have no start and/or ending time, they will just be ignored
|
|
|
|
|
if start is None or end is None:
|
2023-05-24 20:45:15 +02:00
|
|
|
|
continue
|
2024-04-06 12:53:20 +02:00
|
|
|
|
chapters.append({'title': event.capitalize(), 'start_time': start, 'end_time': end})
|
|
|
|
|
|
|
|
|
|
return chapters
|
|
|
|
|
|
|
|
|
|
def _extract_stream(self, identifier, display_id=None):
|
|
|
|
|
if not display_id:
|
|
|
|
|
display_id = identifier
|
|
|
|
|
|
|
|
|
|
self._update_auth()
|
2024-05-23 00:25:07 +02:00
|
|
|
|
headers = {**CrunchyrollBaseIE._AUTH_HEADERS, 'User-Agent': self._SWITCH_USER_AGENT}
|
|
|
|
|
try:
|
|
|
|
|
stream_response = self._download_json(
|
|
|
|
|
f'https://cr-play-service.prd.crunchyrollsvc.com/v1/{identifier}/console/switch/play',
|
|
|
|
|
display_id, note='Downloading stream info', errnote='Failed to download stream info', headers=headers)
|
|
|
|
|
except ExtractorError as error:
|
|
|
|
|
if self.get_param('ignore_no_formats_error'):
|
|
|
|
|
self.report_warning(error.orig_msg)
|
|
|
|
|
return [], {}
|
|
|
|
|
elif isinstance(error.cause, HTTPError) and error.cause.status == 420:
|
|
|
|
|
raise ExtractorError(
|
|
|
|
|
'You have reached the rate-limit for active streams; try again later', expected=True)
|
|
|
|
|
raise
|
2024-04-06 12:53:20 +02:00
|
|
|
|
|
|
|
|
|
available_formats = {'': ('', '', stream_response['url'])}
|
|
|
|
|
for hardsub_lang, stream in traverse_obj(stream_response, ('hardSubs', {dict.items}, lambda _, v: v[1]['url'])):
|
|
|
|
|
available_formats[hardsub_lang] = (f'hardsub-{hardsub_lang}', hardsub_lang, stream['url'])
|
2023-05-24 20:45:15 +02:00
|
|
|
|
|
|
|
|
|
requested_hardsubs = [('' if val == 'none' else val) for val in (self._configuration_arg('hardsub') or ['none'])]
|
2024-04-06 12:53:20 +02:00
|
|
|
|
hardsub_langs = [lang for lang in available_formats if lang]
|
|
|
|
|
if hardsub_langs and 'all' not in requested_hardsubs:
|
2023-05-24 20:45:15 +02:00
|
|
|
|
full_format_langs = set(requested_hardsubs)
|
2024-04-06 12:53:20 +02:00
|
|
|
|
self.to_screen(f'Available hardsub languages: {", ".join(hardsub_langs)}')
|
2023-05-24 20:45:15 +02:00
|
|
|
|
self.to_screen(
|
2024-04-06 12:53:20 +02:00
|
|
|
|
'To extract formats of a hardsub language, use '
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'"--extractor-args crunchyrollbeta:hardsub=<language_code or all>". '
|
|
|
|
|
'See https://github.com/yt-dlp/yt-dlp#crunchyrollbeta-crunchyroll for more info',
|
|
|
|
|
only_once=True)
|
|
|
|
|
else:
|
|
|
|
|
full_format_langs = set(map(str.lower, available_formats))
|
|
|
|
|
|
2024-04-06 12:53:20 +02:00
|
|
|
|
audio_locale = traverse_obj(stream_response, ('audioLocale', {str}))
|
2023-05-24 20:45:15 +02:00
|
|
|
|
hardsub_preference = qualities(requested_hardsubs[::-1])
|
2024-04-06 12:53:20 +02:00
|
|
|
|
formats, subtitles = [], {}
|
|
|
|
|
for format_id, hardsub_lang, stream_url in available_formats.values():
|
|
|
|
|
if hardsub_lang.lower() in full_format_langs:
|
|
|
|
|
adaptive_formats, dash_subs = self._extract_mpd_formats_and_subtitles(
|
|
|
|
|
stream_url, display_id, mpd_id=format_id, headers=CrunchyrollBaseIE._AUTH_HEADERS,
|
|
|
|
|
fatal=False, note=f'Downloading {f"{format_id} " if hardsub_lang else ""}MPD manifest')
|
|
|
|
|
self._merge_subtitles(dash_subs, target=subtitles)
|
2022-08-30 18:34:13 +02:00
|
|
|
|
else:
|
2024-05-23 00:25:07 +02:00
|
|
|
|
continue # XXX: Update this if meta mpd formats work; will be tricky with token invalidation
|
2023-05-24 20:45:15 +02:00
|
|
|
|
for f in adaptive_formats:
|
|
|
|
|
if f.get('acodec') != 'none':
|
|
|
|
|
f['language'] = audio_locale
|
|
|
|
|
f['quality'] = hardsub_preference(hardsub_lang.lower())
|
|
|
|
|
formats.extend(adaptive_formats)
|
|
|
|
|
|
2024-04-06 12:53:20 +02:00
|
|
|
|
for locale, subtitle in traverse_obj(stream_response, (('subtitles', 'captions'), {dict.items}, ...)):
|
|
|
|
|
subtitles.setdefault(locale, []).append(traverse_obj(subtitle, {'url': 'url', 'ext': 'format'}))
|
2023-05-24 20:45:15 +02:00
|
|
|
|
|
2024-05-23 00:25:07 +02:00
|
|
|
|
# Invalidate stream token to avoid rate-limit
|
|
|
|
|
error_msg = 'Unable to invalidate stream token; you may experience rate-limiting'
|
|
|
|
|
if stream_token := stream_response.get('token'):
|
|
|
|
|
self._request_webpage(Request(
|
|
|
|
|
f'https://cr-play-service.prd.crunchyrollsvc.com/v1/token/{identifier}/{stream_token}/inactive',
|
|
|
|
|
headers=headers, method='PATCH'), display_id, 'Invalidating stream token', error_msg, fatal=False)
|
|
|
|
|
else:
|
|
|
|
|
self.report_warning(error_msg)
|
|
|
|
|
|
2024-04-06 12:53:20 +02:00
|
|
|
|
return formats, subtitles
|
2023-05-24 20:45:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CrunchyrollCmsBaseIE(CrunchyrollBaseIE):
|
|
|
|
|
_API_ENDPOINT = 'cms'
|
|
|
|
|
_CMS_EXPIRY = None
|
|
|
|
|
|
|
|
|
|
def _call_cms_api_signed(self, path, internal_id, lang, note='api'):
|
|
|
|
|
if not CrunchyrollCmsBaseIE._CMS_EXPIRY or CrunchyrollCmsBaseIE._CMS_EXPIRY <= time_seconds():
|
|
|
|
|
response = self._call_base_api('index/v2', None, lang, 'Retrieving signed policy')['cms_web']
|
|
|
|
|
CrunchyrollCmsBaseIE._CMS_QUERY = {
|
|
|
|
|
'Policy': response['policy'],
|
|
|
|
|
'Signature': response['signature'],
|
|
|
|
|
'Key-Pair-Id': response['key_pair_id'],
|
2022-04-05 12:51:12 +02:00
|
|
|
|
}
|
2023-05-24 20:45:15 +02:00
|
|
|
|
CrunchyrollCmsBaseIE._CMS_BUCKET = response['bucket']
|
|
|
|
|
CrunchyrollCmsBaseIE._CMS_EXPIRY = parse_iso8601(response['expires']) - 10
|
|
|
|
|
|
|
|
|
|
if not path.startswith('/cms/v2'):
|
|
|
|
|
path = f'/cms/v2{CrunchyrollCmsBaseIE._CMS_BUCKET}/{path}'
|
2022-04-05 12:51:12 +02:00
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
return self._call_base_api(
|
|
|
|
|
path, internal_id, lang, f'Downloading {note} JSON (signed cms)', query=CrunchyrollCmsBaseIE._CMS_QUERY)
|
2022-04-05 12:51:12 +02:00
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
|
|
|
|
|
class CrunchyrollBetaIE(CrunchyrollCmsBaseIE):
|
2022-11-06 19:48:55 +01:00
|
|
|
|
IE_NAME = 'crunchyroll'
|
2022-08-12 09:38:32 +02:00
|
|
|
|
_VALID_URL = r'''(?x)
|
2023-05-24 20:45:15 +02:00
|
|
|
|
https?://(?:beta\.|www\.)?crunchyroll\.com/
|
2023-07-20 22:09:52 +02:00
|
|
|
|
(?:(?P<lang>\w{2}(?:-\w{2})?)/)?
|
2023-05-24 20:45:15 +02:00
|
|
|
|
watch/(?!concert|musicvideo)(?P<id>\w+)'''
|
2021-10-17 13:46:05 +02:00
|
|
|
|
_TESTS = [{
|
2023-05-24 20:45:15 +02:00
|
|
|
|
# Premium only
|
2022-11-06 19:48:55 +01:00
|
|
|
|
'url': 'https://www.crunchyroll.com/watch/GY2P1Q98Y/to-the-future',
|
2021-10-17 13:46:05 +02:00
|
|
|
|
'info_dict': {
|
2022-08-02 23:18:40 +02:00
|
|
|
|
'id': 'GY2P1Q98Y',
|
2021-10-17 13:46:05 +02:00
|
|
|
|
'ext': 'mp4',
|
2022-08-02 23:18:40 +02:00
|
|
|
|
'duration': 1380.241,
|
|
|
|
|
'timestamp': 1459632600,
|
2021-10-17 13:46:05 +02:00
|
|
|
|
'description': 'md5:a022fbec4fbb023d43631032c91ed64b',
|
|
|
|
|
'title': 'World Trigger Episode 73 – To the Future',
|
|
|
|
|
'upload_date': '20160402',
|
2022-04-05 12:51:12 +02:00
|
|
|
|
'series': 'World Trigger',
|
2022-08-02 23:18:40 +02:00
|
|
|
|
'series_id': 'GR757DMKY',
|
2022-04-05 12:51:12 +02:00
|
|
|
|
'season': 'World Trigger',
|
2022-08-02 23:18:40 +02:00
|
|
|
|
'season_id': 'GR9P39NJ6',
|
2022-04-05 12:51:12 +02:00
|
|
|
|
'season_number': 1,
|
2022-08-02 23:18:40 +02:00
|
|
|
|
'episode': 'To the Future',
|
|
|
|
|
'episode_number': 73,
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'thumbnail': r're:^https://www.crunchyroll.com/imgsrv/.*\.jpeg?$',
|
2023-02-12 08:47:12 +01:00
|
|
|
|
'chapters': 'count:2',
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'age_limit': 14,
|
|
|
|
|
'like_count': int,
|
|
|
|
|
'dislike_count': int,
|
2021-10-17 13:46:05 +02:00
|
|
|
|
},
|
2024-04-06 12:53:20 +02:00
|
|
|
|
'params': {
|
|
|
|
|
'skip_download': 'm3u8',
|
|
|
|
|
'extractor_args': {'crunchyrollbeta': {'hardsub': ['de-DE']}},
|
|
|
|
|
'format': 'bv[format_id~=hardsub]',
|
|
|
|
|
},
|
2022-09-30 03:05:44 +02:00
|
|
|
|
}, {
|
2023-05-24 20:45:15 +02:00
|
|
|
|
# Premium only
|
2022-11-06 19:48:55 +01:00
|
|
|
|
'url': 'https://www.crunchyroll.com/watch/GYE5WKQGR',
|
2022-09-30 03:05:44 +02:00
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'GYE5WKQGR',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'duration': 366.459,
|
|
|
|
|
'timestamp': 1476788400,
|
|
|
|
|
'description': 'md5:74b67283ffddd75f6e224ca7dc031e76',
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'title': 'SHELTER – Porter Robinson presents Shelter the Animation',
|
2022-09-30 03:05:44 +02:00
|
|
|
|
'upload_date': '20161018',
|
|
|
|
|
'series': 'SHELTER',
|
|
|
|
|
'series_id': 'GYGG09WWY',
|
|
|
|
|
'season': 'SHELTER',
|
|
|
|
|
'season_id': 'GR09MGK4R',
|
|
|
|
|
'season_number': 1,
|
|
|
|
|
'episode': 'Porter Robinson presents Shelter the Animation',
|
|
|
|
|
'episode_number': 0,
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'thumbnail': r're:^https://www.crunchyroll.com/imgsrv/.*\.jpeg?$',
|
|
|
|
|
'age_limit': 14,
|
|
|
|
|
'like_count': int,
|
|
|
|
|
'dislike_count': int,
|
2022-09-30 03:05:44 +02:00
|
|
|
|
},
|
|
|
|
|
'params': {'skip_download': True},
|
2023-05-24 20:45:15 +02:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://www.crunchyroll.com/watch/GJWU2VKK3/cherry-blossom-meeting-and-a-coming-blizzard',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'GJWU2VKK3',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'duration': 1420.054,
|
|
|
|
|
'description': 'md5:2d1c67c0ec6ae514d9c30b0b99a625cd',
|
|
|
|
|
'title': 'The Ice Guy and His Cool Female Colleague Episode 1 – Cherry Blossom Meeting and a Coming Blizzard',
|
|
|
|
|
'series': 'The Ice Guy and His Cool Female Colleague',
|
|
|
|
|
'series_id': 'GW4HM75NP',
|
|
|
|
|
'season': 'The Ice Guy and His Cool Female Colleague',
|
|
|
|
|
'season_id': 'GY9PC21VE',
|
|
|
|
|
'season_number': 1,
|
|
|
|
|
'episode': 'Cherry Blossom Meeting and a Coming Blizzard',
|
|
|
|
|
'episode_number': 1,
|
|
|
|
|
'chapters': 'count:2',
|
|
|
|
|
'thumbnail': r're:^https://www.crunchyroll.com/imgsrv/.*\.jpeg?$',
|
|
|
|
|
'timestamp': 1672839000,
|
|
|
|
|
'upload_date': '20230104',
|
|
|
|
|
'age_limit': 14,
|
|
|
|
|
'like_count': int,
|
|
|
|
|
'dislike_count': int,
|
|
|
|
|
},
|
|
|
|
|
'params': {'skip_download': 'm3u8'},
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://www.crunchyroll.com/watch/GM8F313NQ',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'GM8F313NQ',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': 'Garakowa -Restore the World-',
|
|
|
|
|
'description': 'md5:8d2f8b6b9dd77d87810882e7d2ee5608',
|
|
|
|
|
'duration': 3996.104,
|
|
|
|
|
'age_limit': 13,
|
|
|
|
|
'thumbnail': r're:^https://www.crunchyroll.com/imgsrv/.*\.jpeg?$',
|
|
|
|
|
},
|
|
|
|
|
'params': {'skip_download': 'm3u8'},
|
2024-04-06 12:53:20 +02:00
|
|
|
|
'skip': 'no longer exists',
|
2023-05-24 20:45:15 +02:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://www.crunchyroll.com/watch/G62PEZ2E6',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'G62PEZ2E6',
|
|
|
|
|
'description': 'md5:8d2f8b6b9dd77d87810882e7d2ee5608',
|
|
|
|
|
'age_limit': 13,
|
|
|
|
|
'duration': 65.138,
|
|
|
|
|
'title': 'Garakowa -Restore the World-',
|
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 5,
|
2022-04-05 12:51:12 +02:00
|
|
|
|
}, {
|
2023-07-20 22:09:52 +02:00
|
|
|
|
'url': 'https://www.crunchyroll.com/de/watch/GY2P1Q98Y',
|
2022-04-05 12:51:12 +02:00
|
|
|
|
'only_matching': True,
|
2022-07-27 12:41:15 +02:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://beta.crunchyroll.com/pt-br/watch/G8WUN8VKP/the-ruler-of-conspiracy',
|
|
|
|
|
'only_matching': True,
|
2021-10-17 13:46:05 +02:00
|
|
|
|
}]
|
2023-05-24 20:45:15 +02:00
|
|
|
|
# We want to support lazy playlist filtering and movie listings cannot be inside a playlist
|
|
|
|
|
_RETURN_TYPE = 'video'
|
2021-10-17 13:46:05 +02:00
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2023-05-24 20:45:15 +02:00
|
|
|
|
lang, internal_id = self._match_valid_url(url).group('lang', 'id')
|
2022-04-05 12:51:12 +02:00
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
# We need to use unsigned API call to allow ratings query string
|
|
|
|
|
response = traverse_obj(self._call_api(
|
|
|
|
|
f'objects/{internal_id}', internal_id, lang, 'object info', {'ratings': 'true'}), ('data', 0, {dict}))
|
|
|
|
|
if not response:
|
|
|
|
|
raise ExtractorError(f'No video with id {internal_id} could be found (possibly region locked?)', expected=True)
|
2022-01-29 01:33:51 +01:00
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
object_type = response.get('type')
|
|
|
|
|
if object_type == 'episode':
|
|
|
|
|
result = self._transform_episode_response(response)
|
2022-01-29 01:33:51 +01:00
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
elif object_type == 'movie':
|
|
|
|
|
result = self._transform_movie_response(response)
|
2022-01-29 01:33:51 +01:00
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
elif object_type == 'movie_listing':
|
|
|
|
|
first_movie_id = traverse_obj(response, ('movie_listing_metadata', 'first_movie_id'))
|
|
|
|
|
if not self._yes_playlist(internal_id, first_movie_id):
|
|
|
|
|
return self.url_result(f'{self._BASE_URL}/{lang}watch/{first_movie_id}', CrunchyrollBetaIE, first_movie_id)
|
|
|
|
|
|
|
|
|
|
def entries():
|
|
|
|
|
movies = self._call_api(f'movie_listings/{internal_id}/movies', internal_id, lang, 'movie list')
|
|
|
|
|
for movie_response in traverse_obj(movies, ('data', ...)):
|
|
|
|
|
yield self.url_result(
|
|
|
|
|
f'{self._BASE_URL}/{lang}watch/{movie_response["id"]}',
|
|
|
|
|
CrunchyrollBetaIE, **self._transform_movie_response(movie_response))
|
|
|
|
|
|
|
|
|
|
return self.playlist_result(entries(), **self._transform_movie_response(response))
|
2022-09-30 03:05:44 +02:00
|
|
|
|
|
|
|
|
|
else:
|
2023-05-24 20:45:15 +02:00
|
|
|
|
raise ExtractorError(f'Unknown object type {object_type}')
|
2022-09-30 03:05:44 +02:00
|
|
|
|
|
2024-04-06 12:53:20 +02:00
|
|
|
|
if not self._IS_PREMIUM and traverse_obj(response, (f'{object_type}_metadata', 'is_premium_only')):
|
2023-05-24 20:45:15 +02:00
|
|
|
|
message = f'This {object_type} is for premium members only'
|
2024-04-22 00:41:40 +02:00
|
|
|
|
if CrunchyrollBaseIE._REFRESH_TOKEN:
|
2024-05-04 18:15:44 +02:00
|
|
|
|
self.raise_no_formats(message, expected=True, video_id=internal_id)
|
|
|
|
|
else:
|
|
|
|
|
self.raise_login_required(message, method='password', metadata_available=True)
|
|
|
|
|
else:
|
|
|
|
|
result['formats'], result['subtitles'] = self._extract_stream(internal_id)
|
2022-01-29 01:33:51 +01:00
|
|
|
|
|
2024-04-06 12:53:20 +02:00
|
|
|
|
result['chapters'] = self._extract_chapters(internal_id)
|
2023-02-12 08:47:12 +01:00
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
def calculate_count(item):
|
|
|
|
|
return parse_count(''.join((item['displayed'], item.get('unit') or '')))
|
|
|
|
|
|
|
|
|
|
result.update(traverse_obj(response, ('rating', {
|
|
|
|
|
'like_count': ('up', {calculate_count}),
|
|
|
|
|
'dislike_count': ('down', {calculate_count}),
|
|
|
|
|
})))
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def _transform_episode_response(data):
|
|
|
|
|
metadata = traverse_obj(data, (('episode_metadata', None), {dict}), get_all=False) or {}
|
2022-01-29 01:33:51 +01:00
|
|
|
|
return {
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'id': data['id'],
|
|
|
|
|
'title': ' \u2013 '.join((
|
2024-06-12 01:09:58 +02:00
|
|
|
|
('{}{}'.format(
|
2023-05-24 20:45:15 +02:00
|
|
|
|
format_field(metadata, 'season_title'),
|
|
|
|
|
format_field(metadata, 'episode', ' Episode %s'))),
|
|
|
|
|
format_field(data, 'title'))),
|
|
|
|
|
**traverse_obj(data, {
|
|
|
|
|
'episode': ('title', {str}),
|
|
|
|
|
'description': ('description', {str}, {lambda x: x.replace(r'\r\n', '\n')}),
|
|
|
|
|
'thumbnails': ('images', 'thumbnail', ..., ..., {
|
|
|
|
|
'url': ('source', {url_or_none}),
|
|
|
|
|
'width': ('width', {int_or_none}),
|
|
|
|
|
'height': ('height', {int_or_none}),
|
|
|
|
|
}),
|
|
|
|
|
}),
|
|
|
|
|
**traverse_obj(metadata, {
|
|
|
|
|
'duration': ('duration_ms', {lambda x: float_or_none(x, 1000)}),
|
|
|
|
|
'timestamp': ('upload_date', {parse_iso8601}),
|
|
|
|
|
'series': ('series_title', {str}),
|
|
|
|
|
'series_id': ('series_id', {str}),
|
|
|
|
|
'season': ('season_title', {str}),
|
|
|
|
|
'season_id': ('season_id', {str}),
|
|
|
|
|
'season_number': ('season_number', ({int}, {float_or_none})),
|
|
|
|
|
'episode_number': ('sequence_number', ({int}, {float_or_none})),
|
|
|
|
|
'age_limit': ('maturity_ratings', -1, {parse_age_limit}),
|
|
|
|
|
'language': ('audio_locale', {str}),
|
|
|
|
|
}, get_all=False),
|
2022-01-29 01:33:51 +01:00
|
|
|
|
}
|
2021-10-17 13:46:05 +02:00
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
@staticmethod
|
|
|
|
|
def _transform_movie_response(data):
|
|
|
|
|
metadata = traverse_obj(data, (('movie_metadata', 'movie_listing_metadata', None), {dict}), get_all=False) or {}
|
|
|
|
|
return {
|
|
|
|
|
'id': data['id'],
|
|
|
|
|
**traverse_obj(data, {
|
|
|
|
|
'title': ('title', {str}),
|
|
|
|
|
'description': ('description', {str}, {lambda x: x.replace(r'\r\n', '\n')}),
|
|
|
|
|
'thumbnails': ('images', 'thumbnail', ..., ..., {
|
|
|
|
|
'url': ('source', {url_or_none}),
|
|
|
|
|
'width': ('width', {int_or_none}),
|
|
|
|
|
'height': ('height', {int_or_none}),
|
|
|
|
|
}),
|
|
|
|
|
}),
|
|
|
|
|
**traverse_obj(metadata, {
|
|
|
|
|
'duration': ('duration_ms', {lambda x: float_or_none(x, 1000)}),
|
|
|
|
|
'age_limit': ('maturity_ratings', -1, {parse_age_limit}),
|
|
|
|
|
}),
|
|
|
|
|
}
|
2021-10-17 13:46:05 +02:00
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
|
|
|
|
|
class CrunchyrollBetaShowIE(CrunchyrollCmsBaseIE):
|
2022-11-06 19:48:55 +01:00
|
|
|
|
IE_NAME = 'crunchyroll:playlist'
|
2022-08-12 09:38:32 +02:00
|
|
|
|
_VALID_URL = r'''(?x)
|
2023-05-24 20:45:15 +02:00
|
|
|
|
https?://(?:beta\.|www\.)?crunchyroll\.com/
|
2022-08-12 09:38:32 +02:00
|
|
|
|
(?P<lang>(?:\w{2}(?:-\w{2})?/)?)
|
2023-05-24 20:45:15 +02:00
|
|
|
|
series/(?P<id>\w+)'''
|
2021-10-17 13:46:05 +02:00
|
|
|
|
_TESTS = [{
|
2022-11-06 19:48:55 +01:00
|
|
|
|
'url': 'https://www.crunchyroll.com/series/GY19NQ2QR/Girl-Friend-BETA',
|
2021-10-17 13:46:05 +02:00
|
|
|
|
'info_dict': {
|
2022-08-02 23:18:40 +02:00
|
|
|
|
'id': 'GY19NQ2QR',
|
2021-10-17 13:46:05 +02:00
|
|
|
|
'title': 'Girl Friend BETA',
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'description': 'md5:99c1b22ee30a74b536a8277ced8eb750',
|
|
|
|
|
# XXX: `thumbnail` does not get set from `thumbnails` in playlist
|
|
|
|
|
# 'thumbnail': r're:^https://www.crunchyroll.com/imgsrv/.*\.jpeg?$',
|
|
|
|
|
'age_limit': 14,
|
2021-10-17 13:46:05 +02:00
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 10,
|
|
|
|
|
}, {
|
2022-08-12 09:38:32 +02:00
|
|
|
|
'url': 'https://beta.crunchyroll.com/it/series/GY19NQ2QR',
|
2021-10-17 13:46:05 +02:00
|
|
|
|
'only_matching': True,
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2023-05-24 20:45:15 +02:00
|
|
|
|
lang, internal_id = self._match_valid_url(url).group('lang', 'id')
|
|
|
|
|
|
|
|
|
|
def entries():
|
|
|
|
|
seasons_response = self._call_cms_api_signed(f'seasons?series_id={internal_id}', internal_id, lang, 'seasons')
|
|
|
|
|
for season in traverse_obj(seasons_response, ('items', ..., {dict})):
|
|
|
|
|
episodes_response = self._call_cms_api_signed(
|
2024-06-12 01:09:58 +02:00
|
|
|
|
f'episodes?season_id={season["id"]}', season['id'], lang, 'episode list')
|
2023-05-24 20:45:15 +02:00
|
|
|
|
for episode_response in traverse_obj(episodes_response, ('items', ..., {dict})):
|
|
|
|
|
yield self.url_result(
|
|
|
|
|
f'{self._BASE_URL}/{lang}watch/{episode_response["id"]}',
|
|
|
|
|
CrunchyrollBetaIE, **CrunchyrollBetaIE._transform_episode_response(episode_response))
|
|
|
|
|
|
|
|
|
|
return self.playlist_result(
|
|
|
|
|
entries(), internal_id,
|
|
|
|
|
**traverse_obj(self._call_api(f'series/{internal_id}', internal_id, lang, 'series'), ('data', 0, {
|
|
|
|
|
'title': ('title', {str}),
|
|
|
|
|
'description': ('description', {lambda x: x.replace(r'\r\n', '\n')}),
|
|
|
|
|
'age_limit': ('maturity_ratings', -1, {parse_age_limit}),
|
|
|
|
|
'thumbnails': ('images', ..., ..., ..., {
|
|
|
|
|
'url': ('source', {url_or_none}),
|
|
|
|
|
'width': ('width', {int_or_none}),
|
|
|
|
|
'height': ('height', {int_or_none}),
|
2024-06-12 01:09:58 +02:00
|
|
|
|
}),
|
2023-05-24 20:45:15 +02:00
|
|
|
|
})))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CrunchyrollMusicIE(CrunchyrollBaseIE):
|
|
|
|
|
IE_NAME = 'crunchyroll:music'
|
|
|
|
|
_VALID_URL = r'''(?x)
|
|
|
|
|
https?://(?:www\.)?crunchyroll\.com/
|
|
|
|
|
(?P<lang>(?:\w{2}(?:-\w{2})?/)?)
|
2023-06-27 22:28:23 +02:00
|
|
|
|
watch/(?P<type>concert|musicvideo)/(?P<id>\w+)'''
|
2023-05-24 20:45:15 +02:00
|
|
|
|
_TESTS = [{
|
2023-06-27 22:28:23 +02:00
|
|
|
|
'url': 'https://www.crunchyroll.com/de/watch/musicvideo/MV5B02C79',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'id': 'MV5B02C79',
|
|
|
|
|
'display_id': 'egaono-hana',
|
|
|
|
|
'title': 'Egaono Hana',
|
|
|
|
|
'track': 'Egaono Hana',
|
2024-04-06 12:53:20 +02:00
|
|
|
|
'artists': ['Goose house'],
|
2023-06-27 22:28:23 +02:00
|
|
|
|
'thumbnail': r're:(?i)^https://www.crunchyroll.com/imgsrv/.*\.jpeg?$',
|
2024-03-08 23:36:41 +01:00
|
|
|
|
'genres': ['J-Pop'],
|
2023-06-27 22:28:23 +02:00
|
|
|
|
},
|
|
|
|
|
'params': {'skip_download': 'm3u8'},
|
|
|
|
|
}, {
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'url': 'https://www.crunchyroll.com/watch/musicvideo/MV88BB7F2C',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'id': 'MV88BB7F2C',
|
|
|
|
|
'display_id': 'crossing-field',
|
|
|
|
|
'title': 'Crossing Field',
|
|
|
|
|
'track': 'Crossing Field',
|
2024-04-06 12:53:20 +02:00
|
|
|
|
'artists': ['LiSA'],
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'thumbnail': r're:(?i)^https://www.crunchyroll.com/imgsrv/.*\.jpeg?$',
|
2024-03-08 23:36:41 +01:00
|
|
|
|
'genres': ['Anime'],
|
2023-05-24 20:45:15 +02:00
|
|
|
|
},
|
|
|
|
|
'params': {'skip_download': 'm3u8'},
|
2024-04-06 12:53:20 +02:00
|
|
|
|
'skip': 'no longer exists',
|
2023-05-24 20:45:15 +02:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://www.crunchyroll.com/watch/concert/MC2E2AC135',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'id': 'MC2E2AC135',
|
|
|
|
|
'display_id': 'live-is-smile-always-364joker-at-yokohama-arena',
|
|
|
|
|
'title': 'LiVE is Smile Always-364+JOKER- at YOKOHAMA ARENA',
|
|
|
|
|
'track': 'LiVE is Smile Always-364+JOKER- at YOKOHAMA ARENA',
|
2024-04-06 12:53:20 +02:00
|
|
|
|
'artists': ['LiSA'],
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'thumbnail': r're:(?i)^https://www.crunchyroll.com/imgsrv/.*\.jpeg?$',
|
|
|
|
|
'description': 'md5:747444e7e6300907b7a43f0a0503072e',
|
2024-03-08 23:36:41 +01:00
|
|
|
|
'genres': ['J-Pop'],
|
2023-05-24 20:45:15 +02:00
|
|
|
|
},
|
|
|
|
|
'params': {'skip_download': 'm3u8'},
|
|
|
|
|
}, {
|
2023-06-27 22:28:23 +02:00
|
|
|
|
'url': 'https://www.crunchyroll.com/de/watch/musicvideo/MV5B02C79/egaono-hana',
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'only_matching': True,
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://www.crunchyroll.com/watch/concert/MC2E2AC135/live-is-smile-always-364joker-at-yokohama-arena',
|
|
|
|
|
'only_matching': True,
|
2023-06-27 22:28:23 +02:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://www.crunchyroll.com/watch/musicvideo/MV88BB7F2C/crossing-field',
|
|
|
|
|
'only_matching': True,
|
2023-05-24 20:45:15 +02:00
|
|
|
|
}]
|
|
|
|
|
_API_ENDPOINT = 'music'
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
lang, internal_id, object_type = self._match_valid_url(url).group('lang', 'id', 'type')
|
|
|
|
|
path, name = {
|
|
|
|
|
'concert': ('concerts', 'concert info'),
|
|
|
|
|
'musicvideo': ('music_videos', 'music video info'),
|
|
|
|
|
}[object_type]
|
|
|
|
|
response = traverse_obj(self._call_api(f'{path}/{internal_id}', internal_id, lang, name), ('data', 0, {dict}))
|
|
|
|
|
if not response:
|
|
|
|
|
raise ExtractorError(f'No video with id {internal_id} could be found (possibly region locked?)', expected=True)
|
2022-04-05 12:51:12 +02:00
|
|
|
|
|
2024-05-04 18:15:44 +02:00
|
|
|
|
result = self._transform_music_response(response)
|
|
|
|
|
|
2024-04-06 12:53:20 +02:00
|
|
|
|
if not self._IS_PREMIUM and response.get('isPremiumOnly'):
|
2023-05-24 20:45:15 +02:00
|
|
|
|
message = f'This {response.get("type") or "media"} is for premium members only'
|
2024-04-22 00:41:40 +02:00
|
|
|
|
if CrunchyrollBaseIE._REFRESH_TOKEN:
|
2024-05-04 18:15:44 +02:00
|
|
|
|
self.raise_no_formats(message, expected=True, video_id=internal_id)
|
|
|
|
|
else:
|
|
|
|
|
self.raise_login_required(message, method='password', metadata_available=True)
|
|
|
|
|
else:
|
|
|
|
|
result['formats'], _ = self._extract_stream(f'music/{internal_id}', internal_id)
|
2023-05-24 20:45:15 +02:00
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def _transform_music_response(data):
|
|
|
|
|
return {
|
|
|
|
|
'id': data['id'],
|
|
|
|
|
**traverse_obj(data, {
|
|
|
|
|
'display_id': 'slug',
|
|
|
|
|
'title': 'title',
|
|
|
|
|
'track': 'title',
|
2024-04-06 12:53:20 +02:00
|
|
|
|
'artists': ('artist', 'name', all),
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'description': ('description', {str}, {lambda x: x.replace(r'\r\n', '\n') or None}),
|
|
|
|
|
'thumbnails': ('images', ..., ..., {
|
|
|
|
|
'url': ('source', {url_or_none}),
|
|
|
|
|
'width': ('width', {int_or_none}),
|
|
|
|
|
'height': ('height', {int_or_none}),
|
|
|
|
|
}),
|
2024-03-08 23:36:41 +01:00
|
|
|
|
'genres': ('genres', ..., 'displayValue'),
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'age_limit': ('maturity_ratings', -1, {parse_age_limit}),
|
|
|
|
|
}),
|
|
|
|
|
}
|
2022-04-05 12:51:12 +02:00
|
|
|
|
|
2023-05-24 20:45:15 +02:00
|
|
|
|
|
|
|
|
|
class CrunchyrollArtistIE(CrunchyrollBaseIE):
|
|
|
|
|
IE_NAME = 'crunchyroll:artist'
|
|
|
|
|
_VALID_URL = r'''(?x)
|
|
|
|
|
https?://(?:www\.)?crunchyroll\.com/
|
|
|
|
|
(?P<lang>(?:\w{2}(?:-\w{2})?/)?)
|
|
|
|
|
artist/(?P<id>\w{10})'''
|
|
|
|
|
_TESTS = [{
|
|
|
|
|
'url': 'https://www.crunchyroll.com/artist/MA179CB50D',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'MA179CB50D',
|
|
|
|
|
'title': 'LiSA',
|
2024-04-06 12:53:20 +02:00
|
|
|
|
'genres': ['Anime', 'J-Pop', 'Rock'],
|
2023-05-24 20:45:15 +02:00
|
|
|
|
'description': 'md5:16d87de61a55c3f7d6c454b73285938e',
|
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 83,
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://www.crunchyroll.com/artist/MA179CB50D/lisa',
|
|
|
|
|
'only_matching': True,
|
|
|
|
|
}]
|
|
|
|
|
_API_ENDPOINT = 'music'
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
lang, internal_id = self._match_valid_url(url).group('lang', 'id')
|
|
|
|
|
response = traverse_obj(self._call_api(
|
|
|
|
|
f'artists/{internal_id}', internal_id, lang, 'artist info'), ('data', 0))
|
2022-04-05 12:51:12 +02:00
|
|
|
|
|
|
|
|
|
def entries():
|
2023-05-24 20:45:15 +02:00
|
|
|
|
for attribute, path in [('concerts', 'concert'), ('videos', 'musicvideo')]:
|
|
|
|
|
for internal_id in traverse_obj(response, (attribute, ...)):
|
|
|
|
|
yield self.url_result(f'{self._BASE_URL}/watch/{path}/{internal_id}', CrunchyrollMusicIE, internal_id)
|
|
|
|
|
|
|
|
|
|
return self.playlist_result(entries(), **self._transform_artist_response(response))
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def _transform_artist_response(data):
|
|
|
|
|
return {
|
|
|
|
|
'id': data['id'],
|
|
|
|
|
**traverse_obj(data, {
|
|
|
|
|
'title': 'name',
|
|
|
|
|
'description': ('description', {str}, {lambda x: x.replace(r'\r\n', '\n')}),
|
|
|
|
|
'thumbnails': ('images', ..., ..., {
|
|
|
|
|
'url': ('source', {url_or_none}),
|
|
|
|
|
'width': ('width', {int_or_none}),
|
|
|
|
|
'height': ('height', {int_or_none}),
|
|
|
|
|
}),
|
2024-03-08 23:36:41 +01:00
|
|
|
|
'genres': ('genres', ..., 'displayValue'),
|
2023-05-24 20:45:15 +02:00
|
|
|
|
}),
|
|
|
|
|
}
|