You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

324 lines
14 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. import json
  5. import base64
  6. import zlib
  7. import xml.etree.ElementTree
  8. from hashlib import sha1
  9. from math import pow, sqrt, floor
  10. from .subtitles import SubtitlesInfoExtractor
  11. from ..compat import (
  12. compat_urllib_parse,
  13. compat_urllib_request,
  14. )
  15. from ..utils import (
  16. ExtractorError,
  17. bytes_to_intlist,
  18. intlist_to_bytes,
  19. unified_strdate,
  20. urlencode_postdata,
  21. )
  22. from ..aes import (
  23. aes_cbc_decrypt,
  24. inc,
  25. )
  26. from .common import InfoExtractor
  27. class CrunchyrollIE(SubtitlesInfoExtractor):
  28. _VALID_URL = r'https?://(?:(?P<prefix>www|m)\.)?(?P<url>crunchyroll\.com/(?:[^/]*/[^/?&]*?|media/\?id=)(?P<video_id>[0-9]+))(?:[/?&]|$)'
  29. _TEST = {
  30. 'url': 'http://www.crunchyroll.com/wanna-be-the-strongest-in-the-world/episode-1-an-idol-wrestler-is-born-645513',
  31. 'info_dict': {
  32. 'id': '645513',
  33. 'ext': 'flv',
  34. 'title': 'Wanna be the Strongest in the World Episode 1 – An Idol-Wrestler is Born!',
  35. 'description': 'md5:2d17137920c64f2f49981a7797d275ef',
  36. 'thumbnail': 'http://img1.ak.crunchyroll.com/i/spire1-tmb/20c6b5e10f1a47b10516877d3c039cae1380951166_full.jpg',
  37. 'uploader': 'Yomiuri Telecasting Corporation (YTV)',
  38. 'upload_date': '20131013',
  39. 'url': 're:(?!.*&amp)',
  40. },
  41. 'params': {
  42. # rtmp
  43. 'skip_download': True,
  44. },
  45. }
  46. _FORMAT_IDS = {
  47. '360': ('60', '106'),
  48. '480': ('61', '106'),
  49. '720': ('62', '106'),
  50. '1080': ('80', '108'),
  51. }
  52. def _login(self):
  53. (username, password) = self._get_login_info()
  54. if username is None:
  55. return
  56. self.report_login()
  57. login_url = 'https://www.crunchyroll.com/?a=formhandler'
  58. data = urlencode_postdata({
  59. 'formname': 'RpcApiUser_Login',
  60. 'name': username,
  61. 'password': password,
  62. })
  63. login_request = compat_urllib_request.Request(login_url, data)
  64. login_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
  65. self._download_webpage(login_request, None, False, 'Wrong login info')
  66. def _real_initialize(self):
  67. self._login()
  68. def _decrypt_subtitles(self, data, iv, id):
  69. data = bytes_to_intlist(data)
  70. iv = bytes_to_intlist(iv)
  71. id = int(id)
  72. def obfuscate_key_aux(count, modulo, start):
  73. output = list(start)
  74. for _ in range(count):
  75. output.append(output[-1] + output[-2])
  76. # cut off start values
  77. output = output[2:]
  78. output = list(map(lambda x: x % modulo + 33, output))
  79. return output
  80. def obfuscate_key(key):
  81. num1 = int(floor(pow(2, 25) * sqrt(6.9)))
  82. num2 = (num1 ^ key) << 5
  83. num3 = key ^ num1
  84. num4 = num3 ^ (num3 >> 3) ^ num2
  85. prefix = intlist_to_bytes(obfuscate_key_aux(20, 97, (1, 2)))
  86. shaHash = bytes_to_intlist(sha1(prefix + str(num4).encode('ascii')).digest())
  87. # Extend 160 Bit hash to 256 Bit
  88. return shaHash + [0] * 12
  89. key = obfuscate_key(id)
  90. class Counter:
  91. __value = iv
  92. def next_value(self):
  93. temp = self.__value
  94. self.__value = inc(self.__value)
  95. return temp
  96. decrypted_data = intlist_to_bytes(aes_cbc_decrypt(data, key, iv))
  97. return zlib.decompress(decrypted_data)
  98. def _convert_subtitles_to_srt(self, sub_root):
  99. output = ''
  100. for i, event in enumerate(sub_root.findall('./events/event'), 1):
  101. start = event.attrib['start'].replace('.', ',')
  102. end = event.attrib['end'].replace('.', ',')
  103. text = event.attrib['text'].replace('\\N', '\n')
  104. output += '%d\n%s --> %s\n%s\n\n' % (i, start, end, text)
  105. return output
  106. def _convert_subtitles_to_ass(self, sub_root):
  107. output = ''
  108. def ass_bool(strvalue):
  109. assvalue = '0'
  110. if strvalue == '1':
  111. assvalue = '-1'
  112. return assvalue
  113. output = '[Script Info]\n'
  114. output += 'Title: %s\n' % sub_root.attrib["title"]
  115. output += 'ScriptType: v4.00+\n'
  116. output += 'WrapStyle: %s\n' % sub_root.attrib["wrap_style"]
  117. output += 'PlayResX: %s\n' % sub_root.attrib["play_res_x"]
  118. output += 'PlayResY: %s\n' % sub_root.attrib["play_res_y"]
  119. output += """ScaledBorderAndShadow: yes
  120. [V4+ Styles]
  121. Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
  122. """
  123. for style in sub_root.findall('./styles/style'):
  124. output += 'Style: ' + style.attrib["name"]
  125. output += ',' + style.attrib["font_name"]
  126. output += ',' + style.attrib["font_size"]
  127. output += ',' + style.attrib["primary_colour"]
  128. output += ',' + style.attrib["secondary_colour"]
  129. output += ',' + style.attrib["outline_colour"]
  130. output += ',' + style.attrib["back_colour"]
  131. output += ',' + ass_bool(style.attrib["bold"])
  132. output += ',' + ass_bool(style.attrib["italic"])
  133. output += ',' + ass_bool(style.attrib["underline"])
  134. output += ',' + ass_bool(style.attrib["strikeout"])
  135. output += ',' + style.attrib["scale_x"]
  136. output += ',' + style.attrib["scale_y"]
  137. output += ',' + style.attrib["spacing"]
  138. output += ',' + style.attrib["angle"]
  139. output += ',' + style.attrib["border_style"]
  140. output += ',' + style.attrib["outline"]
  141. output += ',' + style.attrib["shadow"]
  142. output += ',' + style.attrib["alignment"]
  143. output += ',' + style.attrib["margin_l"]
  144. output += ',' + style.attrib["margin_r"]
  145. output += ',' + style.attrib["margin_v"]
  146. output += ',' + style.attrib["encoding"]
  147. output += '\n'
  148. output += """
  149. [Events]
  150. Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
  151. """
  152. for event in sub_root.findall('./events/event'):
  153. output += 'Dialogue: 0'
  154. output += ',' + event.attrib["start"]
  155. output += ',' + event.attrib["end"]
  156. output += ',' + event.attrib["style"]
  157. output += ',' + event.attrib["name"]
  158. output += ',' + event.attrib["margin_l"]
  159. output += ',' + event.attrib["margin_r"]
  160. output += ',' + event.attrib["margin_v"]
  161. output += ',' + event.attrib["effect"]
  162. output += ',' + event.attrib["text"]
  163. output += '\n'
  164. return output
  165. def _real_extract(self, url):
  166. mobj = re.match(self._VALID_URL, url)
  167. video_id = mobj.group('video_id')
  168. if mobj.group('prefix') == 'm':
  169. mobile_webpage = self._download_webpage(url, video_id, 'Downloading mobile webpage')
  170. webpage_url = self._search_regex(r'<link rel="canonical" href="([^"]+)" />', mobile_webpage, 'webpage_url')
  171. else:
  172. webpage_url = 'http://www.' + mobj.group('url')
  173. webpage = self._download_webpage(webpage_url, video_id, 'Downloading webpage')
  174. note_m = self._html_search_regex(r'<div class="showmedia-trailer-notice">(.+?)</div>', webpage, 'trailer-notice', default='')
  175. if note_m:
  176. raise ExtractorError(note_m)
  177. mobj = re.search(r'Page\.messaging_box_controller\.addItems\(\[(?P<msg>{.+?})\]\)', webpage)
  178. if mobj:
  179. msg = json.loads(mobj.group('msg'))
  180. if msg.get('type') == 'error':
  181. raise ExtractorError('crunchyroll returned error: %s' % msg['message_body'], expected=True)
  182. video_title = self._html_search_regex(r'<h1[^>]*>(.+?)</h1>', webpage, 'video_title', flags=re.DOTALL)
  183. video_title = re.sub(r' {2,}', ' ', video_title)
  184. video_description = self._html_search_regex(r'"description":"([^"]+)', webpage, 'video_description', default='')
  185. if not video_description:
  186. video_description = None
  187. video_upload_date = self._html_search_regex(r'<div>Availability for free users:(.+?)</div>', webpage, 'video_upload_date', fatal=False, flags=re.DOTALL)
  188. if video_upload_date:
  189. video_upload_date = unified_strdate(video_upload_date)
  190. video_uploader = self._html_search_regex(r'<div>\s*Publisher:(.+?)</div>', webpage, 'video_uploader', fatal=False, flags=re.DOTALL)
  191. playerdata_url = compat_urllib_parse.unquote(self._html_search_regex(r'"config_url":"([^"]+)', webpage, 'playerdata_url'))
  192. playerdata_req = compat_urllib_request.Request(playerdata_url)
  193. playerdata_req.data = compat_urllib_parse.urlencode({'current_page': webpage_url})
  194. playerdata_req.add_header('Content-Type', 'application/x-www-form-urlencoded')
  195. playerdata = self._download_webpage(playerdata_req, video_id, note='Downloading media info')
  196. stream_id = self._search_regex(r'<media_id>([^<]+)', playerdata, 'stream_id')
  197. video_thumbnail = self._search_regex(r'<episode_image_url>([^<]+)', playerdata, 'thumbnail', fatal=False)
  198. formats = []
  199. for fmt in re.findall(r'\?p([0-9]{3,4})=1', webpage):
  200. stream_quality, stream_format = self._FORMAT_IDS[fmt]
  201. video_format = fmt + 'p'
  202. streamdata_req = compat_urllib_request.Request('http://www.crunchyroll.com/xml/')
  203. # urlencode doesn't work!
  204. streamdata_req.data = 'req=RpcApiVideoEncode%5FGetStreamInfo&video%5Fencode%5Fquality=' + stream_quality + '&media%5Fid=' + stream_id + '&video%5Fformat=' + stream_format
  205. streamdata_req.add_header('Content-Type', 'application/x-www-form-urlencoded')
  206. streamdata_req.add_header('Content-Length', str(len(streamdata_req.data)))
  207. streamdata = self._download_xml(
  208. streamdata_req, video_id,
  209. note='Downloading media info for %s' % video_format)
  210. video_url = streamdata.find('.//host').text
  211. video_play_path = streamdata.find('.//file').text
  212. formats.append({
  213. 'url': video_url,
  214. 'play_path': video_play_path,
  215. 'ext': 'flv',
  216. 'format': video_format,
  217. 'format_id': video_format,
  218. })
  219. subtitles = {}
  220. sub_format = self._downloader.params.get('subtitlesformat', 'srt')
  221. for sub_id, sub_name in re.findall(r'\?ssid=([0-9]+)" title="([^"]+)', webpage):
  222. sub_page = self._download_webpage(
  223. 'http://www.crunchyroll.com/xml/?req=RpcApiSubtitle_GetXml&subtitle_script_id=' + sub_id,
  224. video_id, note='Downloading subtitles for ' + sub_name)
  225. id = self._search_regex(r'id=\'([0-9]+)', sub_page, 'subtitle_id', fatal=False)
  226. iv = self._search_regex(r'<iv>([^<]+)', sub_page, 'subtitle_iv', fatal=False)
  227. data = self._search_regex(r'<data>([^<]+)', sub_page, 'subtitle_data', fatal=False)
  228. if not id or not iv or not data:
  229. continue
  230. id = int(id)
  231. iv = base64.b64decode(iv)
  232. data = base64.b64decode(data)
  233. subtitle = self._decrypt_subtitles(data, iv, id).decode('utf-8')
  234. lang_code = self._search_regex(r'lang_code=["\']([^"\']+)', subtitle, 'subtitle_lang_code', fatal=False)
  235. if not lang_code:
  236. continue
  237. sub_root = xml.etree.ElementTree.fromstring(subtitle)
  238. if sub_format == 'ass':
  239. subtitles[lang_code] = self._convert_subtitles_to_ass(sub_root)
  240. else:
  241. subtitles[lang_code] = self._convert_subtitles_to_srt(sub_root)
  242. if self._downloader.params.get('listsubtitles', False):
  243. self._list_available_subtitles(video_id, subtitles)
  244. return
  245. return {
  246. 'id': video_id,
  247. 'title': video_title,
  248. 'description': video_description,
  249. 'thumbnail': video_thumbnail,
  250. 'uploader': video_uploader,
  251. 'upload_date': video_upload_date,
  252. 'subtitles': subtitles,
  253. 'formats': formats,
  254. }
  255. class CrunchyrollShowPlaylistIE(InfoExtractor):
  256. IE_NAME = "crunchyroll:playlist"
  257. _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\-]+))/?$'
  258. _TESTS = [{
  259. 'url': 'http://www.crunchyroll.com/a-bridge-to-the-starry-skies-hoshizora-e-kakaru-hashi',
  260. 'info_dict': {
  261. 'id': 'a-bridge-to-the-starry-skies-hoshizora-e-kakaru-hashi',
  262. 'title': 'A Bridge to the Starry Skies - Hoshizora e Kakaru Hashi'
  263. },
  264. 'playlist_count': 13,
  265. }]
  266. def _real_extract(self, url):
  267. show_id = self._match_id(url)
  268. webpage = self._download_webpage(url, show_id)
  269. title = self._html_search_regex(
  270. r'(?s)<h1[^>]*>\s*<span itemprop="name">(.*?)</span>',
  271. webpage, 'title')
  272. episode_paths = re.findall(
  273. r'(?s)<li id="showview_videos_media_[0-9]+"[^>]+>.*?<a href="([^"]+)"',
  274. webpage)
  275. entries = [
  276. self.url_result('http://www.crunchyroll.com' + ep, 'Crunchyroll')
  277. for ep in episode_paths
  278. ]
  279. entries.reverse()
  280. return {
  281. '_type': 'playlist',
  282. 'id': show_id,
  283. 'title': title,
  284. 'entries': entries,
  285. }