2 from __future__ 
import unicode_literals
 
   8 from hashlib 
import sha1
 
   9 from math 
import pow, sqrt
, floor
 
  10 from .common 
import InfoExtractor
 
  11 from .vrv 
import VRVIE
 
  12 from ..compat 
import ( 
  15     compat_etree_fromstring
, 
  16     compat_urllib_parse_urlencode
, 
  17     compat_urllib_request
, 
  39 class CrunchyrollBaseIE(InfoExtractor
): 
  40     _LOGIN_URL 
= 'https://www.crunchyroll.com/login' 
  41     _LOGIN_FORM 
= 'login_form' 
  42     _NETRC_MACHINE 
= 'crunchyroll' 
  44     def _call_rpc_api(self
, method
, video_id
, note
=None, data
=None): 
  46         data
['req'] = 'RpcApi' + method
 
  47         data 
= compat_urllib_parse_urlencode(data
).encode('utf-8') 
  48         return self
._download
_xml
( 
  49             'https://www.crunchyroll.com/xml/', 
  50             video_id
, note
, fatal
=False, data
=data
, headers
={ 
  51                 'Content-Type': 'application/x-www-form-urlencoded', 
  55         username
, password 
= self
._get
_login
_info
() 
  59         login_page 
= self
._download
_webpage
( 
  60             self
._LOGIN
_URL
, None, 'Downloading login page') 
  62         def is_logged(webpage
): 
  63             return 'href="/logout"' in webpage
 
  66         if is_logged(login_page
): 
  69         login_form_str 
= self
._search
_regex
( 
  70             r
'(?P<form><form[^>]+?id=(["\'])%s\
2[^
>]*>)' % self._LOGIN_FORM, 
  71             login_page, 'login form
', group='form
') 
  73         post_url = extract_attributes(login_form_str).get('action
') 
  75             post_url = self._LOGIN_URL 
  76         elif not post_url.startswith('http
'): 
  77             post_url = compat_urlparse.urljoin(self._LOGIN_URL, post_url) 
  79         login_form = self._form_hidden_inputs(self._LOGIN_FORM, login_page) 
  82             'login_form
[name
]': username, 
  83             'login_form
[password
]': password, 
  86         response = self._download_webpage( 
  87             post_url, None, 'Logging 
in', 'Wrong login info
', 
  88             data=urlencode_postdata(login_form), 
  89             headers={'Content
-Type
': 'application
/x
-www
-form
-urlencoded
'}) 
  92         if is_logged(response): 
  95         error = self._html_search_regex( 
  96             '(?s
)<ul
[^
>]+class=["\']messages["\'][^
>]*>(.+?
)</ul
>', 
  97             response, 'error message
', default=None) 
  99             raise ExtractorError('Unable to login
: %s' % error, expected=True) 
 101         raise ExtractorError('Unable to log 
in') 
 103     def _real_initialize(self): 
 106     def _download_webpage(self, url_or_request, *args, **kwargs): 
 107         request = (url_or_request if isinstance(url_or_request, compat_urllib_request.Request) 
 108                    else sanitized_Request(url_or_request)) 
 109         # Accept-Language must be set explicitly to accept any language to avoid issues 
 110         # similar to https://github.com/ytdl-org/youtube-dl/issues/6797. 
 111         # Along with IP address Crunchyroll uses Accept-Language to guess whether georestriction 
 112         # should be imposed or not (from what I can see it just takes the first language 
 113         # ignoring the priority and requires it to correspond the IP). By the way this causes 
 114         # Crunchyroll to not work in georestriction cases in some browsers that don't place
 
 115         # the locale lang first in header. However allowing any language seems to workaround the issue. 
 116         request
.add_header('Accept-Language', '*') 
 117         return super(CrunchyrollBaseIE
, self
)._download
_webpage
(request
, *args
, **kwargs
) 
 120     def _add_skip_wall(url
): 
 121         parsed_url 
= compat_urlparse
.urlparse(url
) 
 122         qs 
= compat_urlparse
.parse_qs(parsed_url
.query
) 
 123         # Always force skip_wall to bypass maturity wall, namely 18+ confirmation message: 
 124         # > This content may be inappropriate for some people. 
 125         # > Are you sure you want to continue? 
 126         # since it's not disabled by default in crunchyroll account's settings. 
 127         # See https://github.com/ytdl-org/youtube-dl/issues/7202. 
 128         qs
['skip_wall'] = ['1'] 
 129         return compat_urlparse
.urlunparse( 
 130             parsed_url
._replace
(query
=compat_urllib_parse_urlencode(qs
, True))) 
 133 class CrunchyrollIE(CrunchyrollBaseIE
, VRVIE
): 
 134     IE_NAME 
= 'crunchyroll' 
 135     _VALID_URL 
= r
'https?://(?:(?P<prefix>www|m)\.)?(?P<url>crunchyroll\.(?:com|fr)/(?:media(?:-|/\?id=)|(?:[^/]*/){1,2}[^/?&]*?)(?P<video_id>[0-9]+))(?:[/?&]|$)' 
 137         'url': 'http://www.crunchyroll.com/wanna-be-the-strongest-in-the-world/episode-1-an-idol-wrestler-is-born-645513', 
 141             'title': 'Wanna be the Strongest in the World Episode 1 – An Idol-Wrestler is Born!', 
 142             'description': 'md5:2d17137920c64f2f49981a7797d275ef', 
 143             'thumbnail': r
're:^https?://.*\.jpg$', 
 144             'uploader': 'Yomiuri Telecasting Corporation (YTV)', 
 145             'upload_date': '20131013', 
 146             'url': 're:(?!.*&)', 
 150             'skip_download': True, 
 153         'url': 'http://www.crunchyroll.com/media-589804/culture-japan-1', 
 157             'title': 'Culture Japan Episode 1 – Rebuilding Japan after the 3.11', 
 158             'description': 'md5:2fbc01f90b87e8e9137296f37b461c12', 
 159             'thumbnail': r
're:^https?://.*\.jpg$', 
 160             'uploader': 'Danny Choo Network', 
 161             'upload_date': '20120213', 
 165             'skip_download': True, 
 167         'skip': 'Video gone', 
 169         'url': 'http://www.crunchyroll.com/rezero-starting-life-in-another-world-/episode-5-the-morning-of-our-promise-is-still-distant-702409', 
 173             'title': 'Re:ZERO -Starting Life in Another World- Episode 5 – The Morning of Our Promise Is Still Distant', 
 174             'description': 'md5:97664de1ab24bbf77a9c01918cb7dca9', 
 175             'thumbnail': r
're:^https?://.*\.jpg$', 
 176             'uploader': 'TV TOKYO', 
 177             'upload_date': '20160508', 
 181             'skip_download': True, 
 184         'url': 'http://www.crunchyroll.com/konosuba-gods-blessing-on-this-wonderful-world/episode-1-give-me-deliverance-from-this-judicial-injustice-727589', 
 188             'title': "KONOSUBA -God's blessing on this wonderful world! 2 Episode 1 – Give Me Deliverance From This Judicial Injustice!", 
 189             'description': 'md5:cbcf05e528124b0f3a0a419fc805ea7d', 
 190             'thumbnail': r
're:^https?://.*\.jpg$', 
 191             'uploader': 'Kadokawa Pictures Inc.', 
 192             'upload_date': '20170118', 
 193             'series': "KONOSUBA -God's blessing on this wonderful world!", 
 194             'season': "KONOSUBA -God's blessing on this wonderful world! 2", 
 196             'episode': 'Give Me Deliverance From This Judicial Injustice!', 
 201             'skip_download': True, 
 204         'url': 'http://www.crunchyroll.fr/girl-friend-beta/episode-11-goodbye-la-mode-661697', 
 205         'only_matching': True, 
 207         # geo-restricted (US), 18+ maturity wall, non-premium available 
 208         'url': 'http://www.crunchyroll.com/cosplay-complex-ova/episode-1-the-birth-of-the-cosplay-club-565617', 
 209         'only_matching': True, 
 211         # A description with double quotes 
 212         'url': 'http://www.crunchyroll.com/11eyes/episode-1-piros-jszaka-red-night-535080', 
 216             'title': '11eyes Episode 1 – Red Night ~ Piros éjszaka', 
 217             'description': 'Kakeru and Yuka are thrown into an alternate nightmarish world they call "Red Night".', 
 218             'uploader': 'Marvelous AQL Inc.', 
 219             'upload_date': '20091021', 
 222             # Just test metadata extraction 
 223             'skip_download': True, 
 226         # make sure we can extract an uploader name that's not a link 
 227         'url': 'http://www.crunchyroll.com/hakuoki-reimeiroku/episode-1-dawn-of-the-divine-warriors-606899', 
 231             'title': 'Hakuoki Reimeiroku Episode 1 – Dawn of the Divine Warriors', 
 232             'description': 'Ryunosuke was left to die, but Serizawa-san asked him a simple question "Do you want to live?"', 
 233             'uploader': 'Geneon Entertainment', 
 234             'upload_date': '20120717', 
 237             # just test metadata extraction 
 238             'skip_download': True, 
 241         # A video with a vastly different season name compared to the series name 
 242         'url': 'http://www.crunchyroll.com/nyarko-san-another-crawling-chaos/episode-1-test-590532', 
 246             'title': 'Haiyoru! Nyaruani (ONA) Episode 1 – Test', 
 247             'description': 'Mahiro and Nyaruko talk about official certification.', 
 248             'uploader': 'TV TOKYO', 
 249             'upload_date': '20120305', 
 250             'series': 'Nyarko-san: Another Crawling Chaos', 
 251             'season': 'Haiyoru! Nyaruani (ONA)', 
 254             # Just test metadata extraction 
 255             'skip_download': True, 
 258         'url': 'http://www.crunchyroll.com/media-723735', 
 259         'only_matching': True, 
 261         'url': 'https://www.crunchyroll.com/en-gb/mob-psycho-100/episode-2-urban-legends-encountering-rumors-780921', 
 262         'only_matching': True, 
 266         '360': ('60', '106'), 
 267         '480': ('61', '106'), 
 268         '720': ('62', '106'), 
 269         '1080': ('80', '108'), 
 272     def _decrypt_subtitles(self
, data
, iv
, id): 
 273         data 
= bytes_to_intlist(compat_b64decode(data
)) 
 274         iv 
= bytes_to_intlist(compat_b64decode(iv
)) 
 277         def obfuscate_key_aux(count
, modulo
, start
): 
 279             for _ 
in range(count
): 
 280                 output
.append(output
[-1] + output
[-2]) 
 281             # cut off start values 
 283             output 
= list(map(lambda x
: x 
% modulo 
+ 33, output
)) 
 286         def obfuscate_key(key
): 
 287             num1 
= int(floor(pow(2, 25) * sqrt(6.9))) 
 288             num2 
= (num1 ^ key
) << 5 
 290             num4 
= num3 ^ 
(num3 
>> 3) ^ num2
 
 291             prefix 
= intlist_to_bytes(obfuscate_key_aux(20, 97, (1, 2))) 
 292             shaHash 
= bytes_to_intlist(sha1(prefix 
+ str(num4
).encode('ascii')).digest()) 
 293             # Extend 160 Bit hash to 256 Bit 
 294             return shaHash 
+ [0] * 12 
 296         key 
= obfuscate_key(id) 
 298         decrypted_data 
= intlist_to_bytes(aes_cbc_decrypt(data
, key
, iv
)) 
 299         return zlib
.decompress(decrypted_data
) 
 301     def _convert_subtitles_to_srt(self
, sub_root
): 
 304         for i
, event 
in enumerate(sub_root
.findall('./events/event'), 1): 
 305             start 
= event
.attrib
['start'].replace('.', ',') 
 306             end 
= event
.attrib
['end'].replace('.', ',') 
 307             text 
= event
.attrib
['text'].replace('\\N', '\n') 
 308             output 
+= '%d\n%s --> %s\n%s\n\n' % (i
, start
, end
, text
) 
 311     def _convert_subtitles_to_ass(self
, sub_root
): 
 314         def ass_bool(strvalue
): 
 320         output 
= '[Script Info]\n' 
 321         output 
+= 'Title: %s\n' % sub_root
.attrib
['title'] 
 322         output 
+= 'ScriptType: v4.00+\n' 
 323         output 
+= 'WrapStyle: %s\n' % sub_root
.attrib
['wrap_style'] 
 324         output 
+= 'PlayResX: %s\n' % sub_root
.attrib
['play_res_x'] 
 325         output 
+= 'PlayResY: %s\n' % sub_root
.attrib
['play_res_y'] 
 328 Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding 
 330         for style 
in sub_root
.findall('./styles/style'): 
 331             output 
+= 'Style: ' + style
.attrib
['name'] 
 332             output 
+= ',' + style
.attrib
['font_name'] 
 333             output 
+= ',' + style
.attrib
['font_size'] 
 334             output 
+= ',' + style
.attrib
['primary_colour'] 
 335             output 
+= ',' + style
.attrib
['secondary_colour'] 
 336             output 
+= ',' + style
.attrib
['outline_colour'] 
 337             output 
+= ',' + style
.attrib
['back_colour'] 
 338             output 
+= ',' + ass_bool(style
.attrib
['bold']) 
 339             output 
+= ',' + ass_bool(style
.attrib
['italic']) 
 340             output 
+= ',' + ass_bool(style
.attrib
['underline']) 
 341             output 
+= ',' + ass_bool(style
.attrib
['strikeout']) 
 342             output 
+= ',' + style
.attrib
['scale_x'] 
 343             output 
+= ',' + style
.attrib
['scale_y'] 
 344             output 
+= ',' + style
.attrib
['spacing'] 
 345             output 
+= ',' + style
.attrib
['angle'] 
 346             output 
+= ',' + style
.attrib
['border_style'] 
 347             output 
+= ',' + style
.attrib
['outline'] 
 348             output 
+= ',' + style
.attrib
['shadow'] 
 349             output 
+= ',' + style
.attrib
['alignment'] 
 350             output 
+= ',' + style
.attrib
['margin_l'] 
 351             output 
+= ',' + style
.attrib
['margin_r'] 
 352             output 
+= ',' + style
.attrib
['margin_v'] 
 353             output 
+= ',' + style
.attrib
['encoding'] 
 358 Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text 
 360         for event 
in sub_root
.findall('./events/event'): 
 361             output 
+= 'Dialogue: 0' 
 362             output 
+= ',' + event
.attrib
['start'] 
 363             output 
+= ',' + event
.attrib
['end'] 
 364             output 
+= ',' + event
.attrib
['style'] 
 365             output 
+= ',' + event
.attrib
['name'] 
 366             output 
+= ',' + event
.attrib
['margin_l'] 
 367             output 
+= ',' + event
.attrib
['margin_r'] 
 368             output 
+= ',' + event
.attrib
['margin_v'] 
 369             output 
+= ',' + event
.attrib
['effect'] 
 370             output 
+= ',' + event
.attrib
['text'] 
 375     def _extract_subtitles(self
, subtitle
): 
 376         sub_root 
= compat_etree_fromstring(subtitle
) 
 379             'data': self
._convert
_subtitles
_to
_srt
(sub_root
), 
 382             'data': self
._convert
_subtitles
_to
_ass
(sub_root
), 
 385     def _get_subtitles(self
, video_id
, webpage
): 
 387         for sub_id
, sub_name 
in re
.findall(r
'\bssid=([0-9]+)"[^>]+?\btitle="([^"]+)', webpage
): 
 388             sub_doc 
= self
._call
_rpc
_api
( 
 389                 'Subtitle_GetXml', video_id
, 
 390                 'Downloading subtitles for ' + sub_name
, data
={ 
 391                     'subtitle_script_id': sub_id
, 
 393             if not isinstance(sub_doc
, compat_etree_Element
): 
 395             sid 
= sub_doc
.get('id') 
 396             iv 
= xpath_text(sub_doc
, 'iv', 'subtitle iv') 
 397             data 
= xpath_text(sub_doc
, 'data', 'subtitle data') 
 398             if not sid 
or not iv 
or not data
: 
 400             subtitle 
= self
._decrypt
_subtitles
(data
, iv
, sid
).decode('utf-8') 
 401             lang_code 
= self
._search
_regex
(r
'lang_code=["\']([^
"\']+)', subtitle, 'subtitle_lang_code', fatal=False) 
 404             subtitles[lang_code] = self._extract_subtitles(subtitle) 
 407     def _real_extract(self, url): 
 408         mobj = re.match(self._VALID_URL, url) 
 409         video_id = mobj.group('video_id') 
 411         if mobj.group('prefix') == 'm': 
 412             mobile_webpage = self._download_webpage(url, video_id, 'Downloading mobile webpage') 
 413             webpage_url = self._search_regex(r'<link rel="canonical
" href="([^
"]+)" />', mobile_webpage, 'webpage_url
') 
 415             webpage_url = 'http
://www
.' + mobj.group('url
') 
 417         webpage = self._download_webpage( 
 418             self._add_skip_wall(webpage_url), video_id, 
 419             headers=self.geo_verification_headers()) 
 420         note_m = self._html_search_regex( 
 421             r'<div 
class="showmedia-trailer-notice">(.+?
)</div
>', 
 422             webpage, 'trailer
-notice
', default='') 
 424             raise ExtractorError(note_m) 
 426         mobj = re.search(r'Page\
.messaging_box_controller\
.addItems\
(\
[(?P
<msg
>{.+?
})\
]\
)', webpage) 
 428             msg = json.loads(mobj.group('msg
')) 
 429             if msg.get('type') == 'error
': 
 430                 raise ExtractorError('crunchyroll returned error
: %s' % msg['message_body
'], expected=True) 
 432         if 'To view this
, please log 
in to verify you are 
18 or older
.' in webpage: 
 433             self.raise_login_required() 
 435         media = self._parse_json(self._search_regex( 
 436             r'vilos\
.config\
.media\s
*=\s
*({.+?
});', 
 437             webpage, 'vilos media
', default='{}'), video_id) 
 438         media_metadata = media.get('metadata
') or {} 
 440         language = self._search_regex( 
 441             r'(?
:vilos\
.config\
.player\
.language|LOCALE
)\s
*=\s
*(["\'])(?P<lang>(?:(?!\1).)+)\1', 
 442             webpage, 'language', default=None, group='lang') 
 444         video_title = self._html_search_regex( 
 445             r'(?s)<h1[^>]*>((?:(?!<h1).)*?<span[^>]+itemprop=["\']title
["\'][^>]*>(?:(?!<h1).)+?)</h1>', 
 446             webpage, 'video_title') 
 447         video_title = re.sub(r' {2,}', ' ', video_title) 
 448         video_description = (self._parse_json(self._html_search_regex( 
 449             r'<script[^>]*>\s*.+?\[media_id=%s\].+?({.+?"description
"\s*:.+?})\);' % video_id, 
 450             webpage, 'description', default='{}'), video_id) or media_metadata).get('description') 
 451         if video_description: 
 452             video_description = lowercase_escape(video_description.replace(r'\r\n', '\n')) 
 453         video_upload_date = self._html_search_regex( 
 454             [r'<div>Availability for free users:(.+?)</div>', r'<div>[^<>]+<span>\s*(.+?\d{4})\s*</span></div>'], 
 455             webpage, 'video_upload_date', fatal=False, flags=re.DOTALL) 
 456         if video_upload_date: 
 457             video_upload_date = unified_strdate(video_upload_date) 
 458         video_uploader = self._html_search_regex( 
 459             # try looking for both an uploader that's a link and one that's not 
 460             [r'<a[^>]+href="/publisher
/[^
"]+"[^
>]*>([^
<]+)</a
>', r'<div
>\s
*Publisher
:\s
*<span
>\s
*(.+?
)\s
*</span
>\s
*</div
>'], 
 461             webpage, 'video_uploader
', fatal=False) 
 464         for stream in media.get('streams
', []): 
 465             audio_lang = stream.get('audio_lang
') 
 466             hardsub_lang = stream.get('hardsub_lang
') 
 467             vrv_formats = self._extract_vrv_formats( 
 468                 stream.get('url
'), video_id, stream.get('format
'), 
 469                 audio_lang, hardsub_lang) 
 470             for f in vrv_formats: 
 473                 language_preference = 0 
 474                 if audio_lang == language: 
 475                     language_preference += 1 
 476                 if hardsub_lang == language: 
 477                     language_preference += 1 
 478                 if language_preference: 
 479                     f['language_preference
'] = language_preference 
 480             formats.extend(vrv_formats) 
 483             for a, fmt in re.findall(r'(<a
[^
>]+token
=["\']showmedia\.([0-9]{3,4})p["\'][^
>]+>)', webpage): 
 484                 attrs = extract_attributes(a) 
 485                 href = attrs.get('href
') 
 486                 if href and '/freetrial
' in href: 
 488                 available_fmts.append(fmt) 
 489             if not available_fmts: 
 490                 for p in (r'token
=["\']showmedia\.([0-9]{3,4})p"', r'showmedia\
.([0-9]{3,4})p
'): 
 491                     available_fmts = re.findall(p, webpage) 
 494             if not available_fmts: 
 495                 available_fmts = self._FORMAT_IDS.keys() 
 496             video_encode_ids = [] 
 498             for fmt in available_fmts: 
 499                 stream_quality, stream_format = self._FORMAT_IDS[fmt] 
 500                 video_format = fmt + 'p
' 
 502                 streamdata = self._call_rpc_api( 
 503                     'VideoPlayer_GetStandardConfig
', video_id, 
 504                     'Downloading media info 
for %s' % video_format, data={ 
 505                         'media_id
': video_id, 
 506                         'video_format
': stream_format, 
 507                         'video_quality
': stream_quality, 
 510                 if isinstance(streamdata, compat_etree_Element): 
 511                     stream_info = streamdata.find('./{default}preload
/stream_info
') 
 512                     if stream_info is not None: 
 513                         stream_infos.append(stream_info) 
 514                 stream_info = self._call_rpc_api( 
 515                     'VideoEncode_GetStreamInfo
', video_id, 
 516                     'Downloading stream info 
for %s' % video_format, data={ 
 517                         'media_id
': video_id, 
 518                         'video_format
': stream_format, 
 519                         'video_encode_quality
': stream_quality, 
 521                 if isinstance(stream_info, compat_etree_Element): 
 522                     stream_infos.append(stream_info) 
 523                 for stream_info in stream_infos: 
 524                     video_encode_id = xpath_text(stream_info, './video_encode_id
') 
 525                     if video_encode_id in video_encode_ids: 
 527                     video_encode_ids.append(video_encode_id) 
 529                     video_file = xpath_text(stream_info, './file') 
 532                     if video_file.startswith('http
'): 
 533                         formats.extend(self._extract_m3u8_formats( 
 534                             video_file, video_id, 'mp4
', entry_protocol='m3u8_native
', 
 535                             m3u8_id='hls
', fatal=False)) 
 538                     video_url = xpath_text(stream_info, './host
') 
 541                     metadata = stream_info.find('./metadata
') 
 543                         'format
': video_format, 
 544                         'height
': int_or_none(xpath_text(metadata, './height
')), 
 545                         'width
': int_or_none(xpath_text(metadata, './width
')), 
 548                     if '.fplive
.net
/' in video_url: 
 549                         video_url = re.sub(r'^rtmpe?
://', 'http
://', video_url.strip()) 
 550                         parsed_video_url = compat_urlparse.urlparse(video_url) 
 551                         direct_video_url = compat_urlparse.urlunparse(parsed_video_url._replace( 
 552                             netloc='v
.lvlt
.crcdn
.net
', 
 553                             path='%s/%s' % (remove_end(parsed_video_url.path, '/'), video_file.split(':')[-1]))) 
 554                         if self._is_valid_url(direct_video_url, video_id, video_format): 
 556                                 'format_id
': 'http
-' + video_format, 
 557                                 'url
': direct_video_url, 
 559                             formats.append(format_info) 
 563                         'format_id
': 'rtmp
-' + video_format, 
 565                         'play_path
': video_file, 
 568                     formats.append(format_info) 
 569         self._sort_formats(formats, ('preference
', 'language_preference
', 'height
', 'width
', 'tbr
', 'fps
')) 
 571         metadata = self._call_rpc_api( 
 572             'VideoPlayer_GetMediaMetadata
', video_id, 
 573             note='Downloading media info
', data={ 
 574                 'media_id
': video_id, 
 578         for subtitle in media.get('subtitles
', []): 
 579             subtitle_url = subtitle.get('url
') 
 582             subtitles.setdefault(subtitle.get('language
', 'enUS
'), []).append({ 
 584                 'ext
': subtitle.get('format
', 'ass
'), 
 587             subtitles = self.extract_subtitles(video_id, webpage) 
 589         # webpage provide more accurate data than series_title from XML 
 590         series = self._html_search_regex( 
 591             r'(?s
)<h\d
[^
>]+\bid
=["\']showmedia_about_episode_num[^>]+>(.+?)</h\d', 
 592             webpage, 'series', fatal=False) 
 594         season = episode = episode_number = duration = thumbnail = None 
 596         if isinstance(metadata, compat_etree_Element): 
 597             season = xpath_text(metadata, 'series_title') 
 598             episode = xpath_text(metadata, 'episode_title') 
 599             episode_number = int_or_none(xpath_text(metadata, 'episode_number')) 
 600             duration = float_or_none(media_metadata.get('duration'), 1000) 
 601             thumbnail = xpath_text(metadata, 'episode_image_url') 
 604             episode = media_metadata.get('title') 
 605         if not episode_number: 
 606             episode_number = int_or_none(media_metadata.get('episode_number')) 
 608             thumbnail = media_metadata.get('thumbnail', {}).get('url') 
 610         season_number = int_or_none(self._search_regex( 
 611             r'(?s)<h\d[^>]+id=["\']showmedia_about_episode_num
[^
>]+>.+?
</h\d
>\s
*<h4
>\s
*Season (\d
+)', 
 612             webpage, 'season number
', default=None)) 
 616             'title
': video_title, 
 617             'description
': video_description, 
 618             'duration
': duration, 
 619             'thumbnail
': thumbnail, 
 620             'uploader
': video_uploader, 
 621             'upload_date
': video_upload_date, 
 624             'season_number
': season_number, 
 626             'episode_number
': episode_number, 
 627             'subtitles
': subtitles, 
 632 class CrunchyrollShowPlaylistIE(CrunchyrollBaseIE): 
 633     IE_NAME = 'crunchyroll
:playlist
' 
 634     _VALID_URL = r'https?
://(?
:(?P
<prefix
>www|m
)\
.)?
(?P
<url
>crunchyroll\
.com
/(?
!(?
:news|anime
-news|library|forum|launchcalendar|lineup|store|comics|freetrial|login|media
-\d
+))(?P
<id>[\w\
-]+))/?
(?
:\?|$
)' 
 637         'url
': 'http
://www
.crunchyroll
.com
/a
-bridge
-to
-the
-starry
-skies
-hoshizora
-e
-kakaru
-hashi
', 
 639             'id': 'a
-bridge
-to
-the
-starry
-skies
-hoshizora
-e
-kakaru
-hashi
', 
 640             'title
': 'A Bridge to the Starry Skies 
- Hoshizora e Kakaru Hashi
' 
 642         'playlist_count
': 13, 
 644         # geo-restricted (US), 18+ maturity wall, non-premium available 
 645         'url
': 'http
://www
.crunchyroll
.com
/cosplay
-complex-ova
', 
 647             'id': 'cosplay
-complex-ova
', 
 648             'title
': 'Cosplay Complex OVA
' 
 651         'skip
': 'Georestricted
', 
 653         # geo-restricted (US), 18+ maturity wall, non-premium will be available since 2015.11.14 
 654         'url
': 'http
://www
.crunchyroll
.com
/ladies
-versus
-butlers?skip_wall
=1', 
 655         'only_matching
': True, 
 658     def _real_extract(self, url): 
 659         show_id = self._match_id(url) 
 661         webpage = self._download_webpage( 
 662             self._add_skip_wall(url), show_id, 
 663             headers=self.geo_verification_headers()) 
 664         title = self._html_search_regex( 
 665             r'(?s
)<h1
[^
>]*>\s
*<span itemprop
="name">(.*?
)</span
>', 
 667         episode_paths = re.findall( 
 668             r'(?s
)<li 
id="showview_videos_media_(\d+)"[^
>]+>.*?
<a href
="([^"]+)"', 
 671             self.url_result('http://www.crunchyroll.com' + ep, 'Crunchyroll', ep_id) 
 672             for ep_id, ep in episode_paths