leeco.py 12 KB

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