]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/crunchyroll.py
[thescene] Fix extraction and improve style (Closes #8978)
[yt-dlp.git] / youtube_dl / extractor / crunchyroll.py
CommitLineData
c8434e83 1# encoding: utf-8
38a40276 2from __future__ import unicode_literals
3
34440095 4import re
1d430674 5import json
34440095
S
6import base64
7import zlib
8
c8434e83 9from hashlib import sha1
10from math import pow, sqrt, floor
b5857f62 11from .common import InfoExtractor
1cc79574 12from ..compat import (
36e6f62c 13 compat_etree_fromstring,
c8434e83 14 compat_urllib_parse,
a60cccbf 15 compat_urllib_parse_unquote,
c8434e83 16 compat_urllib_request,
a01da8bb 17 compat_urlparse,
1cc79574
PH
18)
19from ..utils import (
20 ExtractorError,
c8434e83 21 bytes_to_intlist,
22 intlist_to_bytes,
725d1c58 23 int_or_none,
6d02b9a3 24 lowercase_escape,
a01da8bb 25 remove_end,
5c2266df 26 sanitized_Request,
c8434e83 27 unified_strdate,
723e04d0 28 urlencode_postdata,
725d1c58 29 xpath_text,
c8434e83 30)
31from ..aes import (
32 aes_cbc_decrypt,
c8434e83 33)
34
34440095 35
12810c9c 36class CrunchyrollBaseIE(InfoExtractor):
80f48920
S
37 _NETRC_MACHINE = 'crunchyroll'
38
39 def _login(self):
40 (username, password) = self._get_login_info()
41 if username is None:
42 return
43 self.report_login()
44 login_url = 'https://www.crunchyroll.com/?a=formhandler'
45 data = urlencode_postdata({
46 'formname': 'RpcApiUser_Login',
47 'name': username,
48 'password': password,
49 })
5c2266df 50 login_request = sanitized_Request(login_url, data)
80f48920
S
51 login_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
52 self._download_webpage(login_request, None, False, 'Wrong login info')
53
54 def _real_initialize(self):
55 self._login()
56
cc162f6a 57 def _download_webpage(self, url_or_request, *args, **kwargs):
12810c9c 58 request = (url_or_request if isinstance(url_or_request, compat_urllib_request.Request)
5c2266df 59 else sanitized_Request(url_or_request))
12810c9c
S
60 # Accept-Language must be set explicitly to accept any language to avoid issues
61 # similar to https://github.com/rg3/youtube-dl/issues/6797.
62 # Along with IP address Crunchyroll uses Accept-Language to guess whether georestriction
63 # should be imposed or not (from what I can see it just takes the first language
64 # ignoring the priority and requires it to correspond the IP). By the way this causes
65 # Crunchyroll to not work in georestriction cases in some browsers that don't place
66 # the locale lang first in header. However allowing any language seems to workaround the issue.
67 request.add_header('Accept-Language', '*')
cc162f6a 68 return super(CrunchyrollBaseIE, self)._download_webpage(request, *args, **kwargs)
12810c9c 69
80f48920
S
70 @staticmethod
71 def _add_skip_wall(url):
72 parsed_url = compat_urlparse.urlparse(url)
73 qs = compat_urlparse.parse_qs(parsed_url.query)
74 # Always force skip_wall to bypass maturity wall, namely 18+ confirmation message:
75 # > This content may be inappropriate for some people.
76 # > Are you sure you want to continue?
77 # since it's not disabled by default in crunchyroll account's settings.
78 # See https://github.com/rg3/youtube-dl/issues/7202.
79 qs['skip_wall'] = ['1']
80 return compat_urlparse.urlunparse(
81 parsed_url._replace(query=compat_urllib_parse.urlencode(qs, True)))
82
12810c9c
S
83
84class CrunchyrollIE(CrunchyrollBaseIE):
ede21449 85 _VALID_URL = r'https?://(?:(?P<prefix>www|m)\.)?(?P<url>crunchyroll\.(?:com|fr)/(?:media(?:-|/\?id=)|[^/]*/[^/?&]*?)(?P<video_id>[0-9]+))(?:[/?&]|$)'
a8896c5a 86 _TESTS = [{
38a40276 87 'url': 'http://www.crunchyroll.com/wanna-be-the-strongest-in-the-world/episode-1-an-idol-wrestler-is-born-645513',
38a40276 88 'info_dict': {
34440095
S
89 'id': '645513',
90 'ext': 'flv',
38a40276 91 'title': 'Wanna be the Strongest in the World Episode 1 – An Idol-Wrestler is Born!',
92 'description': 'md5:2d17137920c64f2f49981a7797d275ef',
93 'thumbnail': 'http://img1.ak.crunchyroll.com/i/spire1-tmb/20c6b5e10f1a47b10516877d3c039cae1380951166_full.jpg',
94 'uploader': 'Yomiuri Telecasting Corporation (YTV)',
95 'upload_date': '20131013',
b1edd7a4 96 'url': 're:(?!.*&amp)',
c8434e83 97 },
38a40276 98 'params': {
c8434e83 99 # rtmp
38a40276 100 'skip_download': True,
c8434e83 101 },
ede21449
S
102 }, {
103 'url': 'http://www.crunchyroll.com/media-589804/culture-japan-1',
104 'info_dict': {
105 'id': '589804',
106 'ext': 'flv',
107 'title': 'Culture Japan Episode 1 – Rebuilding Japan after the 3.11',
6d02b9a3 108 'description': 'md5:2fbc01f90b87e8e9137296f37b461c12',
ede21449
S
109 'thumbnail': 're:^https?://.*\.jpg$',
110 'uploader': 'Danny Choo Network',
111 'upload_date': '20120213',
112 },
113 'params': {
114 # rtmp
115 'skip_download': True,
116 },
a8896c5a
S
117 }, {
118 'url': 'http://www.crunchyroll.fr/girl-friend-beta/episode-11-goodbye-la-mode-661697',
119 'only_matching': True,
49941c4e
S
120 }, {
121 # geo-restricted (US), 18+ maturity wall, non-premium available
122 'url': 'http://www.crunchyroll.com/cosplay-complex-ova/episode-1-the-birth-of-the-cosplay-club-565617',
123 'only_matching': True,
a8896c5a 124 }]
c8434e83 125
126 _FORMAT_IDS = {
38a40276 127 '360': ('60', '106'),
128 '480': ('61', '106'),
129 '720': ('62', '106'),
130 '1080': ('80', '108'),
c8434e83 131 }
132
133 def _decrypt_subtitles(self, data, iv, id):
1a5b77dc
S
134 data = bytes_to_intlist(base64.b64decode(data.encode('utf-8')))
135 iv = bytes_to_intlist(base64.b64decode(iv.encode('utf-8')))
c8434e83 136 id = int(id)
137
138 def obfuscate_key_aux(count, modulo, start):
139 output = list(start)
140 for _ in range(count):
141 output.append(output[-1] + output[-2])
142 # cut off start values
143 output = output[2:]
144 output = list(map(lambda x: x % modulo + 33, output))
145 return output
146
147 def obfuscate_key(key):
148 num1 = int(floor(pow(2, 25) * sqrt(6.9)))
149 num2 = (num1 ^ key) << 5
150 num3 = key ^ num1
151 num4 = num3 ^ (num3 >> 3) ^ num2
152 prefix = intlist_to_bytes(obfuscate_key_aux(20, 97, (1, 2)))
38a40276 153 shaHash = bytes_to_intlist(sha1(prefix + str(num4).encode('ascii')).digest())
c8434e83 154 # Extend 160 Bit hash to 256 Bit
155 return shaHash + [0] * 12
34440095 156
c8434e83 157 key = obfuscate_key(id)
5f6a1245 158
c8434e83 159 decrypted_data = intlist_to_bytes(aes_cbc_decrypt(data, key, iv))
160 return zlib.decompress(decrypted_data)
161
d65d6286 162 def _convert_subtitles_to_srt(self, sub_root):
38a40276 163 output = ''
d65d6286
JMF
164
165 for i, event in enumerate(sub_root.findall('./events/event'), 1):
166 start = event.attrib['start'].replace('.', ',')
167 end = event.attrib['end'].replace('.', ',')
168 text = event.attrib['text'].replace('\\N', '\n')
38a40276 169 output += '%d\n%s --> %s\n%s\n\n' % (i, start, end, text)
c8434e83 170 return output
171
d65d6286 172 def _convert_subtitles_to_ass(self, sub_root):
78272a07
A
173 output = ''
174
175 def ass_bool(strvalue):
176 assvalue = '0'
177 if strvalue == '1':
178 assvalue = '-1'
179 return assvalue
180
78272a07 181 output = '[Script Info]\n'
611c1dd9 182 output += 'Title: %s\n' % sub_root.attrib['title']
78272a07 183 output += 'ScriptType: v4.00+\n'
611c1dd9
S
184 output += 'WrapStyle: %s\n' % sub_root.attrib['wrap_style']
185 output += 'PlayResX: %s\n' % sub_root.attrib['play_res_x']
186 output += 'PlayResY: %s\n' % sub_root.attrib['play_res_y']
78272a07
A
187 output += """ScaledBorderAndShadow: yes
188
189[V4+ Styles]
190Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
191"""
192 for style in sub_root.findall('./styles/style'):
611c1dd9
S
193 output += 'Style: ' + style.attrib['name']
194 output += ',' + style.attrib['font_name']
195 output += ',' + style.attrib['font_size']
196 output += ',' + style.attrib['primary_colour']
197 output += ',' + style.attrib['secondary_colour']
198 output += ',' + style.attrib['outline_colour']
199 output += ',' + style.attrib['back_colour']
200 output += ',' + ass_bool(style.attrib['bold'])
201 output += ',' + ass_bool(style.attrib['italic'])
202 output += ',' + ass_bool(style.attrib['underline'])
203 output += ',' + ass_bool(style.attrib['strikeout'])
204 output += ',' + style.attrib['scale_x']
205 output += ',' + style.attrib['scale_y']
206 output += ',' + style.attrib['spacing']
207 output += ',' + style.attrib['angle']
208 output += ',' + style.attrib['border_style']
209 output += ',' + style.attrib['outline']
210 output += ',' + style.attrib['shadow']
211 output += ',' + style.attrib['alignment']
212 output += ',' + style.attrib['margin_l']
213 output += ',' + style.attrib['margin_r']
214 output += ',' + style.attrib['margin_v']
215 output += ',' + style.attrib['encoding']
78272a07
A
216 output += '\n'
217
218 output += """
219[Events]
220Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
221"""
222 for event in sub_root.findall('./events/event'):
223 output += 'Dialogue: 0'
611c1dd9
S
224 output += ',' + event.attrib['start']
225 output += ',' + event.attrib['end']
226 output += ',' + event.attrib['style']
227 output += ',' + event.attrib['name']
228 output += ',' + event.attrib['margin_l']
229 output += ',' + event.attrib['margin_r']
230 output += ',' + event.attrib['margin_v']
231 output += ',' + event.attrib['effect']
232 output += ',' + event.attrib['text']
78272a07
A
233 output += '\n'
234
235 return output
236
0385d642 237 def _extract_subtitles(self, subtitle):
36e6f62c 238 sub_root = compat_etree_fromstring(subtitle)
0385d642
S
239 return [{
240 'ext': 'srt',
241 'data': self._convert_subtitles_to_srt(sub_root),
242 }, {
243 'ext': 'ass',
244 'data': self._convert_subtitles_to_ass(sub_root),
245 }]
246
b5857f62
JMF
247 def _get_subtitles(self, video_id, webpage):
248 subtitles = {}
76907875 249 for sub_id, sub_name in re.findall(r'\bssid=([0-9]+)"[^>]+?\btitle="([^"]+)', webpage):
b5857f62
JMF
250 sub_page = self._download_webpage(
251 'http://www.crunchyroll.com/xml/?req=RpcApiSubtitle_GetXml&subtitle_script_id=' + sub_id,
252 video_id, note='Downloading subtitles for ' + sub_name)
253 id = self._search_regex(r'id=\'([0-9]+)', sub_page, 'subtitle_id', fatal=False)
254 iv = self._search_regex(r'<iv>([^<]+)', sub_page, 'subtitle_iv', fatal=False)
255 data = self._search_regex(r'<data>([^<]+)', sub_page, 'subtitle_data', fatal=False)
256 if not id or not iv or not data:
257 continue
b5857f62
JMF
258 subtitle = self._decrypt_subtitles(data, iv, id).decode('utf-8')
259 lang_code = self._search_regex(r'lang_code=["\']([^"\']+)', subtitle, 'subtitle_lang_code', fatal=False)
260 if not lang_code:
261 continue
0385d642 262 subtitles[lang_code] = self._extract_subtitles(subtitle)
b5857f62
JMF
263 return subtitles
264
5f6a1245 265 def _real_extract(self, url):
c8434e83 266 mobj = re.match(self._VALID_URL, url)
38a40276 267 video_id = mobj.group('video_id')
268
269 if mobj.group('prefix') == 'm':
270 mobile_webpage = self._download_webpage(url, video_id, 'Downloading mobile webpage')
271 webpage_url = self._search_regex(r'<link rel="canonical" href="([^"]+)" />', mobile_webpage, 'webpage_url')
272 else:
273 webpage_url = 'http://www.' + mobj.group('url')
c8434e83 274
80f48920 275 webpage = self._download_webpage(self._add_skip_wall(webpage_url), video_id, 'Downloading webpage')
2f72e83b
S
276 note_m = self._html_search_regex(
277 r'<div class="showmedia-trailer-notice">(.+?)</div>',
278 webpage, 'trailer-notice', default='')
c8434e83 279 if note_m:
280 raise ExtractorError(note_m)
281
1d430674
S
282 mobj = re.search(r'Page\.messaging_box_controller\.addItems\(\[(?P<msg>{.+?})\]\)', webpage)
283 if mobj:
284 msg = json.loads(mobj.group('msg'))
285 if msg.get('type') == 'error':
286 raise ExtractorError('crunchyroll returned error: %s' % msg['message_body'], expected=True)
2f72e83b
S
287
288 if 'To view this, please log in to verify you are 18 or older.' in webpage:
39affb5a 289 self.raise_login_required()
1d430674 290
5214f1e3
S
291 video_title = self._html_search_regex(
292 r'(?s)<h1[^>]*>((?:(?!<h1).)*?<span[^>]+itemprop=["\']title["\'][^>]*>(?:(?!<h1).)+?)</h1>',
293 webpage, 'video_title')
38a40276 294 video_title = re.sub(r' {2,}', ' ', video_title)
2c740cf2 295 video_description = self._html_search_regex(
6d02b9a3
S
296 r'<script[^>]*>\s*.+?\[media_id=%s\].+?"description"\s*:\s*"([^"]+)' % video_id,
297 webpage, 'description', default=None)
298 if video_description:
299 video_description = lowercase_escape(video_description.replace(r'\r\n', '\n'))
47004d95
S
300 video_upload_date = self._html_search_regex(
301 [r'<div>Availability for free users:(.+?)</div>', r'<div>[^<>]+<span>\s*(.+?\d{4})\s*</span></div>'],
302 webpage, 'video_upload_date', fatal=False, flags=re.DOTALL)
c8434e83 303 if video_upload_date:
304 video_upload_date = unified_strdate(video_upload_date)
47004d95
S
305 video_uploader = self._html_search_regex(
306 r'<a[^>]+href="/publisher/[^"]+"[^>]*>([^<]+)</a>', webpage,
307 'video_uploader', fatal=False)
c8434e83 308
a60cccbf 309 playerdata_url = compat_urllib_parse_unquote(self._html_search_regex(r'"config_url":"([^"]+)', webpage, 'playerdata_url'))
5c2266df 310 playerdata_req = sanitized_Request(playerdata_url)
38a40276 311 playerdata_req.data = compat_urllib_parse.urlencode({'current_page': webpage_url})
312 playerdata_req.add_header('Content-Type', 'application/x-www-form-urlencoded')
313 playerdata = self._download_webpage(playerdata_req, video_id, note='Downloading media info')
34440095 314
38a40276 315 stream_id = self._search_regex(r'<media_id>([^<]+)', playerdata, 'stream_id')
316 video_thumbnail = self._search_regex(r'<episode_image_url>([^<]+)', playerdata, 'thumbnail', fatal=False)
c8434e83 317
318 formats = []
a221f229 319 for fmt in re.findall(r'showmedia\.([0-9]{3,4})p', webpage):
c8434e83 320 stream_quality, stream_format = self._FORMAT_IDS[fmt]
2514d263 321 video_format = fmt + 'p'
5c2266df 322 streamdata_req = sanitized_Request(
ede21449
S
323 'http://www.crunchyroll.com/xml/?req=RpcApiVideoPlayer_GetStandardConfig&media_id=%s&video_format=%s&video_quality=%s'
324 % (stream_id, stream_format, stream_quality),
325 compat_urllib_parse.urlencode({'current_page': url}).encode('utf-8'))
38a40276 326 streamdata_req.add_header('Content-Type', 'application/x-www-form-urlencoded')
b1edd7a4
PH
327 streamdata = self._download_xml(
328 streamdata_req, video_id,
329 note='Downloading media info for %s' % video_format)
ede21449 330 stream_info = streamdata.find('./{default}preload/stream_info')
e4f49a87 331 video_url = xpath_text(stream_info, './host')
332 video_play_path = xpath_text(stream_info, './file')
333 if not video_url or not video_play_path:
334 continue
725d1c58
JMF
335 metadata = stream_info.find('./metadata')
336 format_info = {
337 'format': video_format,
338 'format_id': video_format,
339 'height': int_or_none(xpath_text(metadata, './height')),
340 'width': int_or_none(xpath_text(metadata, './width')),
341 }
a01da8bb
S
342
343 if '.fplive.net/' in video_url:
344 video_url = re.sub(r'^rtmpe?://', 'http://', video_url.strip())
345 parsed_video_url = compat_urlparse.urlparse(video_url)
346 direct_video_url = compat_urlparse.urlunparse(parsed_video_url._replace(
347 netloc='v.lvlt.crcdn.net',
348 path='%s/%s' % (remove_end(parsed_video_url.path, '/'), video_play_path.split(':')[-1])))
349 if self._is_valid_url(direct_video_url, video_id, video_format):
725d1c58 350 format_info.update({
a01da8bb 351 'url': direct_video_url,
a01da8bb 352 })
725d1c58 353 formats.append(format_info)
a01da8bb
S
354 continue
355
725d1c58 356 format_info.update({
38a40276 357 'url': video_url,
b1edd7a4 358 'play_path': video_play_path,
38a40276 359 'ext': 'flv',
c8434e83 360 })
725d1c58 361 formats.append(format_info)
c8434e83 362
b5857f62 363 subtitles = self.extract_subtitles(video_id, webpage)
11b3ce85 364
c8434e83 365 return {
8bcc8756
JW
366 'id': video_id,
367 'title': video_title,
38a40276 368 'description': video_description,
8bcc8756
JW
369 'thumbnail': video_thumbnail,
370 'uploader': video_uploader,
38a40276 371 'upload_date': video_upload_date,
8bcc8756
JW
372 'subtitles': subtitles,
373 'formats': formats,
d0a72674 374 }
8230018c
GS
375
376
12810c9c 377class CrunchyrollShowPlaylistIE(CrunchyrollBaseIE):
611c1dd9 378 IE_NAME = 'crunchyroll:playlist'
80f48920 379 _VALID_URL = r'https?://(?:(?P<prefix>www|m)\.)?(?P<url>crunchyroll\.com/(?!(?:news|anime-news|library|forum|launchcalendar|lineup|store|comics|freetrial|login))(?P<id>[\w\-]+))/?(?:\?|$)'
8230018c
GS
380
381 _TESTS = [{
09e5d6a6
PH
382 'url': 'http://www.crunchyroll.com/a-bridge-to-the-starry-skies-hoshizora-e-kakaru-hashi',
383 'info_dict': {
384 'id': 'a-bridge-to-the-starry-skies-hoshizora-e-kakaru-hashi',
385 'title': 'A Bridge to the Starry Skies - Hoshizora e Kakaru Hashi'
8230018c 386 },
09e5d6a6 387 'playlist_count': 13,
49941c4e
S
388 }, {
389 # geo-restricted (US), 18+ maturity wall, non-premium available
390 'url': 'http://www.crunchyroll.com/cosplay-complex-ova',
391 'info_dict': {
392 'id': 'cosplay-complex-ova',
393 'title': 'Cosplay Complex OVA'
394 },
395 'playlist_count': 3,
396 'skip': 'Georestricted',
397 }, {
398 # geo-restricted (US), 18+ maturity wall, non-premium will be available since 2015.11.14
399 'url': 'http://www.crunchyroll.com/ladies-versus-butlers?skip_wall=1',
400 'only_matching': True,
8230018c
GS
401 }]
402
8230018c 403 def _real_extract(self, url):
09e5d6a6
PH
404 show_id = self._match_id(url)
405
80f48920 406 webpage = self._download_webpage(self._add_skip_wall(url), show_id)
09e5d6a6
PH
407 title = self._html_search_regex(
408 r'(?s)<h1[^>]*>\s*<span itemprop="name">(.*?)</span>',
409 webpage, 'title')
410 episode_paths = re.findall(
411 r'(?s)<li id="showview_videos_media_[0-9]+"[^>]+>.*?<a href="([^"]+)"',
412 webpage)
413 entries = [
414 self.url_result('http://www.crunchyroll.com' + ep, 'Crunchyroll')
415 for ep in episode_paths
416 ]
417 entries.reverse()
418
8230018c 419 return {
09e5d6a6
PH
420 '_type': 'playlist',
421 'id': show_id,
422 'title': title,
423 'entries': entries,
424 }