leeco.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import base64
  4. import datetime
  5. import hashlib
  6. import re
  7. import time
  8. from .common import InfoExtractor
  9. from ..compat import (
  10. compat_ord,
  11. compat_str,
  12. compat_urllib_parse_urlencode,
  13. )
  14. from ..utils import (
  15. determine_ext,
  16. encode_data_uri,
  17. ExtractorError,
  18. int_or_none,
  19. orderedSet,
  20. parse_iso8601,
  21. sanitized_Request,
  22. str_or_none,
  23. url_basename,
  24. urshift,
  25. )
  26. class LeIE(InfoExtractor):
  27. IE_DESC = '乐视网'
  28. _VALID_URL = r'https?://(?:www\.le\.com/ptv/vplay|sports\.le\.com/video)/(?P<id>\d+)\.html'
  29. _URL_TEMPLATE = 'http://www.le.com/ptv/vplay/%s.html'
  30. _TESTS = [{
  31. 'url': 'http://www.le.com/ptv/vplay/22005890.html',
  32. 'md5': 'edadcfe5406976f42f9f266057ee5e40',
  33. 'info_dict': {
  34. 'id': '22005890',
  35. 'ext': 'mp4',
  36. 'title': '第87届奥斯卡颁奖礼完美落幕 《鸟人》成最大赢家',
  37. 'description': 'md5:a9cb175fd753e2962176b7beca21a47c',
  38. },
  39. 'params': {
  40. 'hls_prefer_native': True,
  41. },
  42. }, {
  43. 'url': 'http://www.le.com/ptv/vplay/1415246.html',
  44. 'info_dict': {
  45. 'id': '1415246',
  46. 'ext': 'mp4',
  47. 'title': '美人天下01',
  48. 'description': 'md5:f88573d9d7225ada1359eaf0dbf8bcda',
  49. },
  50. 'params': {
  51. 'hls_prefer_native': True,
  52. },
  53. }, {
  54. 'note': 'This video is available only in Mainland China, thus a proxy is needed',
  55. 'url': 'http://www.le.com/ptv/vplay/1118082.html',
  56. 'md5': '2424c74948a62e5f31988438979c5ad1',
  57. 'info_dict': {
  58. 'id': '1118082',
  59. 'ext': 'mp4',
  60. 'title': '与龙共舞 完整版',
  61. 'description': 'md5:7506a5eeb1722bb9d4068f85024e3986',
  62. },
  63. 'params': {
  64. 'hls_prefer_native': True,
  65. },
  66. 'skip': 'Only available in China',
  67. }, {
  68. 'url': 'http://sports.le.com/video/25737697.html',
  69. 'only_matching': True,
  70. }]
  71. # ror() and calc_time_key() are reversed from a embedded swf file in KLetvPlayer.swf
  72. def ror(self, param1, param2):
  73. _loc3_ = 0
  74. while _loc3_ < param2:
  75. param1 = urshift(param1, 1) + ((param1 & 1) << 31)
  76. _loc3_ += 1
  77. return param1
  78. def calc_time_key(self, param1):
  79. _loc2_ = 773625421
  80. _loc3_ = self.ror(param1, _loc2_ % 13)
  81. _loc3_ = _loc3_ ^ _loc2_
  82. _loc3_ = self.ror(_loc3_, _loc2_ % 17)
  83. return _loc3_
  84. # see M3U8Encryption class in KLetvPlayer.swf
  85. @staticmethod
  86. def decrypt_m3u8(encrypted_data):
  87. if encrypted_data[:5].decode('utf-8').lower() != 'vc_01':
  88. return encrypted_data
  89. encrypted_data = encrypted_data[5:]
  90. _loc4_ = bytearray(2 * len(encrypted_data))
  91. for idx, val in enumerate(encrypted_data):
  92. b = compat_ord(val)
  93. _loc4_[2 * idx] = b // 16
  94. _loc4_[2 * idx + 1] = b % 16
  95. idx = len(_loc4_) - 11
  96. _loc4_ = _loc4_[idx:] + _loc4_[:idx]
  97. _loc7_ = bytearray(len(encrypted_data))
  98. for i in range(len(encrypted_data)):
  99. _loc7_[i] = _loc4_[2 * i] * 16 + _loc4_[2 * i + 1]
  100. return bytes(_loc7_)
  101. def _real_extract(self, url):
  102. media_id = self._match_id(url)
  103. page = self._download_webpage(url, media_id)
  104. params = {
  105. 'id': media_id,
  106. 'platid': 1,
  107. 'splatid': 101,
  108. 'format': 1,
  109. 'tkey': self.calc_time_key(int(time.time())),
  110. 'domain': 'www.le.com'
  111. }
  112. play_json_req = sanitized_Request(
  113. 'http://api.le.com/mms/out/video/playJson?' + compat_urllib_parse_urlencode(params)
  114. )
  115. cn_verification_proxy = self._downloader.params.get('cn_verification_proxy')
  116. if cn_verification_proxy:
  117. play_json_req.add_header('Ytdl-request-proxy', cn_verification_proxy)
  118. play_json = self._download_json(
  119. play_json_req,
  120. media_id, 'Downloading playJson data')
  121. # Check for errors
  122. playstatus = play_json['playstatus']
  123. if playstatus['status'] == 0:
  124. flag = playstatus['flag']
  125. if flag == 1:
  126. msg = 'Country %s auth error' % playstatus['country']
  127. else:
  128. msg = 'Generic error. flag = %d' % flag
  129. raise ExtractorError(msg, expected=True)
  130. playurl = play_json['playurl']
  131. formats = ['350', '1000', '1300', '720p', '1080p']
  132. dispatch = playurl['dispatch']
  133. urls = []
  134. for format_id in formats:
  135. if format_id in dispatch:
  136. media_url = playurl['domain'][0] + dispatch[format_id][0]
  137. media_url += '&' + compat_urllib_parse_urlencode({
  138. 'm3v': 1,
  139. 'format': 1,
  140. 'expect': 3,
  141. 'rateid': format_id,
  142. })
  143. nodes_data = self._download_json(
  144. media_url, media_id,
  145. 'Download JSON metadata for format %s' % format_id)
  146. req = self._request_webpage(
  147. nodes_data['nodelist'][0]['location'], media_id,
  148. note='Downloading m3u8 information for format %s' % format_id)
  149. m3u8_data = self.decrypt_m3u8(req.read())
  150. url_info_dict = {
  151. 'url': encode_data_uri(m3u8_data, 'application/vnd.apple.mpegurl'),
  152. 'ext': determine_ext(dispatch[format_id][1]),
  153. 'format_id': format_id,
  154. 'protocol': 'm3u8',
  155. }
  156. if format_id[-1:] == 'p':
  157. url_info_dict['height'] = int_or_none(format_id[:-1])
  158. urls.append(url_info_dict)
  159. publish_time = parse_iso8601(self._html_search_regex(
  160. r'发布时间&nbsp;([^<>]+) ', page, 'publish time', default=None),
  161. delimiter=' ', timezone=datetime.timedelta(hours=8))
  162. description = self._html_search_meta('description', page, fatal=False)
  163. return {
  164. 'id': media_id,
  165. 'formats': urls,
  166. 'title': playurl['title'],
  167. 'thumbnail': playurl['pic'],
  168. 'description': description,
  169. 'timestamp': publish_time,
  170. }
  171. class LePlaylistIE(InfoExtractor):
  172. _VALID_URL = r'https?://[a-z]+\.le\.com/(?!video)[a-z]+/(?P<id>[a-z0-9_]+)'
  173. _TESTS = [{
  174. 'url': 'http://www.le.com/tv/46177.html',
  175. 'info_dict': {
  176. 'id': '46177',
  177. 'title': '美人天下',
  178. 'description': 'md5:395666ff41b44080396e59570dbac01c'
  179. },
  180. 'playlist_count': 35
  181. }, {
  182. 'url': 'http://tv.le.com/izt/wuzetian/index.html',
  183. 'info_dict': {
  184. 'id': 'wuzetian',
  185. 'title': '武媚娘传奇',
  186. 'description': 'md5:e12499475ab3d50219e5bba00b3cb248'
  187. },
  188. # This playlist contains some extra videos other than the drama itself
  189. 'playlist_mincount': 96
  190. }, {
  191. 'url': 'http://tv.le.com/pzt/lswjzzjc/index.shtml',
  192. # This series is moved to http://www.le.com/tv/10005297.html
  193. 'only_matching': True,
  194. }, {
  195. 'url': 'http://www.le.com/comic/92063.html',
  196. 'only_matching': True,
  197. }, {
  198. 'url': 'http://list.le.com/listn/c1009_sc532002_d2_p1_o1.html',
  199. 'only_matching': True,
  200. }]
  201. @classmethod
  202. def suitable(cls, url):
  203. return False if LeIE.suitable(url) else super(LePlaylistIE, cls).suitable(url)
  204. def _real_extract(self, url):
  205. playlist_id = self._match_id(url)
  206. page = self._download_webpage(url, playlist_id)
  207. # Currently old domain names are still used in playlists
  208. media_ids = orderedSet(re.findall(
  209. r'<a[^>]+href="http://www\.letv\.com/ptv/vplay/(\d+)\.html', page))
  210. entries = [self.url_result(LeIE._URL_TEMPLATE % media_id, ie='Le')
  211. for media_id in media_ids]
  212. title = self._html_search_meta('keywords', page,
  213. fatal=False).split(',')[0]
  214. description = self._html_search_meta('description', page, fatal=False)
  215. return self.playlist_result(entries, playlist_id, playlist_title=title,
  216. playlist_description=description)
  217. class LetvCloudIE(InfoExtractor):
  218. # Most of *.letv.com is changed to *.le.com on 2016/01/02
  219. # but yuntv.letv.com is kept, so also keep the extractor name
  220. IE_DESC = '乐视云'
  221. _VALID_URL = r'https?://yuntv\.letv\.com/bcloud.html\?.+'
  222. _TESTS = [{
  223. 'url': 'http://yuntv.letv.com/bcloud.html?uu=p7jnfw5hw9&vu=467623dedf',
  224. 'md5': '26450599afd64c513bc77030ad15db44',
  225. 'info_dict': {
  226. 'id': 'p7jnfw5hw9_467623dedf',
  227. 'ext': 'mp4',
  228. 'title': 'Video p7jnfw5hw9_467623dedf',
  229. },
  230. }, {
  231. 'url': 'http://yuntv.letv.com/bcloud.html?uu=p7jnfw5hw9&vu=ec93197892&pu=2c7cd40209&auto_play=1&gpcflag=1&width=640&height=360',
  232. 'md5': 'e03d9cc8d9c13191e1caf277e42dbd31',
  233. 'info_dict': {
  234. 'id': 'p7jnfw5hw9_ec93197892',
  235. 'ext': 'mp4',
  236. 'title': 'Video p7jnfw5hw9_ec93197892',
  237. },
  238. }, {
  239. 'url': 'http://yuntv.letv.com/bcloud.html?uu=p7jnfw5hw9&vu=187060b6fd',
  240. 'md5': 'cb988699a776b22d4a41b9d43acfb3ac',
  241. 'info_dict': {
  242. 'id': 'p7jnfw5hw9_187060b6fd',
  243. 'ext': 'mp4',
  244. 'title': 'Video p7jnfw5hw9_187060b6fd',
  245. },
  246. }]
  247. @staticmethod
  248. def sign_data(obj):
  249. if obj['cf'] == 'flash':
  250. salt = '2f9d6924b33a165a6d8b5d3d42f4f987'
  251. items = ['cf', 'format', 'ran', 'uu', 'ver', 'vu']
  252. elif obj['cf'] == 'html5':
  253. salt = 'fbeh5player12c43eccf2bec3300344'
  254. items = ['cf', 'ran', 'uu', 'bver', 'vu']
  255. input_data = ''.join([item + obj[item] for item in items]) + salt
  256. obj['sign'] = hashlib.md5(input_data.encode('utf-8')).hexdigest()
  257. def _get_formats(self, cf, uu, vu, media_id):
  258. def get_play_json(cf, timestamp):
  259. data = {
  260. 'cf': cf,
  261. 'ver': '2.2',
  262. 'bver': 'firefox44.0',
  263. 'format': 'json',
  264. 'uu': uu,
  265. 'vu': vu,
  266. 'ran': compat_str(timestamp),
  267. }
  268. self.sign_data(data)
  269. return self._download_json(
  270. 'http://api.letvcloud.com/gpc.php?' + compat_urllib_parse_urlencode(data),
  271. media_id, 'Downloading playJson data for type %s' % cf)
  272. play_json = get_play_json(cf, time.time())
  273. # The server time may be different from local time
  274. if play_json.get('code') == 10071:
  275. play_json = get_play_json(cf, play_json['timestamp'])
  276. if not play_json.get('data'):
  277. if play_json.get('message'):
  278. raise ExtractorError('Letv cloud said: %s' % play_json['message'], expected=True)
  279. elif play_json.get('code'):
  280. raise ExtractorError('Letv cloud returned error %d' % play_json['code'], expected=True)
  281. else:
  282. raise ExtractorError('Letv cloud returned an unknwon error')
  283. def b64decode(s):
  284. return base64.b64decode(s.encode('utf-8')).decode('utf-8')
  285. formats = []
  286. for media in play_json['data']['video_info']['media'].values():
  287. play_url = media['play_url']
  288. url = b64decode(play_url['main_url'])
  289. decoded_url = b64decode(url_basename(url))
  290. formats.append({
  291. 'url': url,
  292. 'ext': determine_ext(decoded_url),
  293. 'format_id': str_or_none(play_url.get('vtype')),
  294. 'format_note': str_or_none(play_url.get('definition')),
  295. 'width': int_or_none(play_url.get('vwidth')),
  296. 'height': int_or_none(play_url.get('vheight')),
  297. })
  298. return formats
  299. def _real_extract(self, url):
  300. uu_mobj = re.search('uu=([\w]+)', url)
  301. vu_mobj = re.search('vu=([\w]+)', url)
  302. if not uu_mobj or not vu_mobj:
  303. raise ExtractorError('Invalid URL: %s' % url, expected=True)
  304. uu = uu_mobj.group(1)
  305. vu = vu_mobj.group(1)
  306. media_id = uu + '_' + vu
  307. formats = self._get_formats('flash', uu, vu, media_id) + self._get_formats('html5', uu, vu, media_id)
  308. self._sort_formats(formats)
  309. return {
  310. 'id': media_id,
  311. 'title': 'Video %s' % media_id,
  312. 'formats': formats,
  313. }