theplatform.py 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. import re
  4. import time
  5. import hmac
  6. import binascii
  7. import hashlib
  8. from .once import OnceIE
  9. from ..compat import (
  10. compat_parse_qs,
  11. compat_urllib_parse_urlparse,
  12. )
  13. from ..utils import (
  14. ExtractorError,
  15. float_or_none,
  16. int_or_none,
  17. sanitized_Request,
  18. unsmuggle_url,
  19. xpath_with_ns,
  20. mimetype2ext,
  21. find_xpath_attr,
  22. update_url_query,
  23. )
  24. default_ns = 'http://www.w3.org/2005/SMIL21/Language'
  25. _x = lambda p: xpath_with_ns(p, {'smil': default_ns})
  26. class ThePlatformBaseIE(OnceIE):
  27. def _extract_theplatform_smil(self, smil_url, video_id, note='Downloading SMIL data'):
  28. smil_url = update_url_query(smil_url, {'format': 'SMIL'})
  29. meta = self._download_xml(smil_url, video_id, note=note)
  30. error_element = find_xpath_attr(
  31. meta, _x('.//smil:ref'), 'src',
  32. 'http://link.theplatform.com/s/errorFiles/Unavailable.mp4')
  33. if error_element is not None:
  34. raise ExtractorError(error_element.attrib['abstract'], expected=True)
  35. smil_formats = self._parse_smil_formats(
  36. meta, smil_url, video_id, namespace=default_ns,
  37. # the parameters are from syfy.com, other sites may use others,
  38. # they also work for nbc.com
  39. f4m_params={'g': 'UXWGVKRWHFSP', 'hdcore': '3.0.3'},
  40. transform_rtmp_url=lambda streamer, src: (streamer, 'mp4:' + src))
  41. formats = []
  42. for _format in smil_formats:
  43. if OnceIE.suitable(_format['url']):
  44. formats.extend(self._extract_once_formats(_format['url']))
  45. else:
  46. formats.append(_format)
  47. self._sort_formats(formats)
  48. subtitles = self._parse_smil_subtitles(meta, default_ns)
  49. return formats, subtitles
  50. def get_metadata(self, path, video_id):
  51. info_url = 'http://link.theplatform.com/s/%s?format=preview' % path
  52. info = self._download_json(info_url, video_id)
  53. subtitles = {}
  54. captions = info.get('captions')
  55. if isinstance(captions, list):
  56. for caption in captions:
  57. lang, src, mime = caption.get('lang', 'en'), caption.get('src'), caption.get('type')
  58. subtitles[lang] = [{
  59. 'ext': mimetype2ext(mime),
  60. 'url': src,
  61. }]
  62. return {
  63. 'title': info['title'],
  64. 'subtitles': subtitles,
  65. 'description': info['description'],
  66. 'thumbnail': info['defaultThumbnailUrl'],
  67. 'duration': int_or_none(info.get('duration'), 1000),
  68. }
  69. class ThePlatformIE(ThePlatformBaseIE):
  70. _VALID_URL = r'''(?x)
  71. (?:https?://(?:link|player)\.theplatform\.com/[sp]/(?P<provider_id>[^/]+)/
  72. (?:(?P<media>(?:(?:[^/]+/)+select/)?media/)|(?P<config>(?:[^/\?]+/(?:swf|config)|onsite)/select/))?
  73. |theplatform:)(?P<id>[^/\?&]+)'''
  74. _TESTS = [{
  75. # from http://www.metacafe.com/watch/cb-e9I_cZgTgIPd/blackberrys_big_bold_z30/
  76. 'url': 'http://link.theplatform.com/s/dJ5BDC/e9I_cZgTgIPd/meta.smil?format=smil&Tracking=true&mbr=true',
  77. 'info_dict': {
  78. 'id': 'e9I_cZgTgIPd',
  79. 'ext': 'flv',
  80. 'title': 'Blackberry\'s big, bold Z30',
  81. 'description': 'The Z30 is Blackberry\'s biggest, baddest mobile messaging device yet.',
  82. 'duration': 247,
  83. },
  84. 'params': {
  85. # rtmp download
  86. 'skip_download': True,
  87. },
  88. }, {
  89. # from http://www.cnet.com/videos/tesla-model-s-a-second-step-towards-a-cleaner-motoring-future/
  90. 'url': 'http://link.theplatform.com/s/kYEXFC/22d_qsQ6MIRT',
  91. 'info_dict': {
  92. 'id': '22d_qsQ6MIRT',
  93. 'ext': 'flv',
  94. 'description': 'md5:ac330c9258c04f9d7512cf26b9595409',
  95. 'title': 'Tesla Model S: A second step towards a cleaner motoring future',
  96. },
  97. 'params': {
  98. # rtmp download
  99. 'skip_download': True,
  100. }
  101. }, {
  102. 'url': 'https://player.theplatform.com/p/D6x-PC/pulse_preview/embed/select/media/yMBg9E8KFxZD',
  103. 'info_dict': {
  104. 'id': 'yMBg9E8KFxZD',
  105. 'ext': 'mp4',
  106. 'description': 'md5:644ad9188d655b742f942bf2e06b002d',
  107. 'title': 'HIGHLIGHTS: USA bag first ever series Cup win',
  108. }
  109. }, {
  110. 'url': 'http://player.theplatform.com/p/NnzsPC/widget/select/media/4Y0TlYUr_ZT7',
  111. 'only_matching': True,
  112. }, {
  113. 'url': 'http://player.theplatform.com/p/2E2eJC/nbcNewsOffsite?guid=tdy_or_siri_150701',
  114. 'md5': 'fb96bb3d85118930a5b055783a3bd992',
  115. 'info_dict': {
  116. 'id': 'tdy_or_siri_150701',
  117. 'ext': 'mp4',
  118. 'title': 'iPhone Siri’s sassy response to a math question has people talking',
  119. 'description': 'md5:a565d1deadd5086f3331d57298ec6333',
  120. 'duration': 83.0,
  121. 'thumbnail': 're:^https?://.*\.jpg$',
  122. 'timestamp': 1435752600,
  123. 'upload_date': '20150701',
  124. },
  125. }, {
  126. # From http://www.nbc.com/the-blacklist/video/sir-crispin-crandall/2928790?onid=137781#vc137781=1
  127. # geo-restricted (US), HLS encrypted with AES-128
  128. 'url': 'http://player.theplatform.com/p/NnzsPC/onsite_universal/select/media/guid/2410887629/2928790?fwsitesection=nbc_the_blacklist_video_library&autoPlay=true&carouselID=137781',
  129. 'only_matching': True,
  130. }]
  131. @staticmethod
  132. def _sign_url(url, sig_key, sig_secret, life=600, include_qs=False):
  133. flags = '10' if include_qs else '00'
  134. expiration_date = '%x' % (int(time.time()) + life)
  135. def str_to_hex(str):
  136. return binascii.b2a_hex(str.encode('ascii')).decode('ascii')
  137. def hex_to_str(hex):
  138. return binascii.a2b_hex(hex)
  139. relative_path = url.split('http://link.theplatform.com/s/')[1].split('?')[0]
  140. clear_text = hex_to_str(flags + expiration_date + str_to_hex(relative_path))
  141. checksum = hmac.new(sig_key.encode('ascii'), clear_text, hashlib.sha1).hexdigest()
  142. sig = flags + expiration_date + checksum + str_to_hex(sig_secret)
  143. return '%s&sig=%s' % (url, sig)
  144. def _real_extract(self, url):
  145. url, smuggled_data = unsmuggle_url(url, {})
  146. mobj = re.match(self._VALID_URL, url)
  147. provider_id = mobj.group('provider_id')
  148. video_id = mobj.group('id')
  149. if not provider_id:
  150. provider_id = 'dJ5BDC'
  151. path = provider_id
  152. if mobj.group('media'):
  153. path += '/media'
  154. path += '/' + video_id
  155. qs_dict = compat_parse_qs(compat_urllib_parse_urlparse(url).query)
  156. if 'guid' in qs_dict:
  157. webpage = self._download_webpage(url, video_id)
  158. scripts = re.findall(r'<script[^>]+src="([^"]+)"', webpage)
  159. feed_id = None
  160. # feed id usually locates in the last script.
  161. # Seems there's no pattern for the interested script filename, so
  162. # I try one by one
  163. for script in reversed(scripts):
  164. feed_script = self._download_webpage(
  165. self._proto_relative_url(script, 'http:'),
  166. video_id, 'Downloading feed script')
  167. feed_id = self._search_regex(
  168. r'defaultFeedId\s*:\s*"([^"]+)"', feed_script,
  169. 'default feed id', default=None)
  170. if feed_id is not None:
  171. break
  172. if feed_id is None:
  173. raise ExtractorError('Unable to find feed id')
  174. return self.url_result('http://feed.theplatform.com/f/%s/%s?byGuid=%s' % (
  175. provider_id, feed_id, qs_dict['guid'][0]))
  176. if smuggled_data.get('force_smil_url', False):
  177. smil_url = url
  178. # Explicitly specified SMIL (see https://github.com/rg3/youtube-dl/issues/7385)
  179. elif '/guid/' in url:
  180. headers = {}
  181. source_url = smuggled_data.get('source_url')
  182. if source_url:
  183. headers['Referer'] = source_url
  184. request = sanitized_Request(url, headers=headers)
  185. webpage = self._download_webpage(request, video_id)
  186. smil_url = self._search_regex(
  187. r'<link[^>]+href=(["\'])(?P<url>.+?)\1[^>]+type=["\']application/smil\+xml',
  188. webpage, 'smil url', group='url')
  189. path = self._search_regex(
  190. r'link\.theplatform\.com/s/((?:[^/?#&]+/)+[^/?#&]+)', smil_url, 'path')
  191. smil_url += '?' if '?' not in smil_url else '&' + 'formats=m3u,mpeg4'
  192. elif mobj.group('config'):
  193. config_url = url + '&form=json'
  194. config_url = config_url.replace('swf/', 'config/')
  195. config_url = config_url.replace('onsite/', 'onsite/config/')
  196. config = self._download_json(config_url, video_id, 'Downloading config')
  197. if 'releaseUrl' in config:
  198. release_url = config['releaseUrl']
  199. else:
  200. release_url = 'http://link.theplatform.com/s/%s?mbr=true' % path
  201. smil_url = release_url + '&formats=MPEG4&manifest=f4m'
  202. else:
  203. smil_url = 'http://link.theplatform.com/s/%s?mbr=true' % path
  204. sig = smuggled_data.get('sig')
  205. if sig:
  206. smil_url = self._sign_url(smil_url, sig['key'], sig['secret'])
  207. formats, subtitles = self._extract_theplatform_smil(smil_url, video_id)
  208. ret = self.get_metadata(path, video_id)
  209. combined_subtitles = self._merge_subtitles(ret.get('subtitles', {}), subtitles)
  210. ret.update({
  211. 'id': video_id,
  212. 'formats': formats,
  213. 'subtitles': combined_subtitles,
  214. })
  215. return ret
  216. class ThePlatformFeedIE(ThePlatformBaseIE):
  217. _URL_TEMPLATE = '%s//feed.theplatform.com/f/%s/%s?form=json&byGuid=%s'
  218. _VALID_URL = r'https?://feed\.theplatform\.com/f/(?P<provider_id>[^/]+)/(?P<feed_id>[^?/]+)\?(?:[^&]+&)*byGuid=(?P<id>[a-zA-Z0-9_]+)'
  219. _TEST = {
  220. # From http://player.theplatform.com/p/7wvmTC/MSNBCEmbeddedOffSite?guid=n_hardball_5biden_140207
  221. 'url': 'http://feed.theplatform.com/f/7wvmTC/msnbc_video-p-test?form=json&pretty=true&range=-40&byGuid=n_hardball_5biden_140207',
  222. 'md5': '6e32495b5073ab414471b615c5ded394',
  223. 'info_dict': {
  224. 'id': 'n_hardball_5biden_140207',
  225. 'ext': 'mp4',
  226. 'title': 'The Biden factor: will Joe run in 2016?',
  227. 'description': 'Could Vice President Joe Biden be preparing a 2016 campaign? Mark Halperin and Sam Stein weigh in.',
  228. 'thumbnail': 're:^https?://.*\.jpg$',
  229. 'upload_date': '20140208',
  230. 'timestamp': 1391824260,
  231. 'duration': 467.0,
  232. 'categories': ['MSNBC/Issues/Democrats', 'MSNBC/Issues/Elections/Election 2016'],
  233. },
  234. }
  235. def _real_extract(self, url):
  236. mobj = re.match(self._VALID_URL, url)
  237. video_id = mobj.group('id')
  238. provider_id = mobj.group('provider_id')
  239. feed_id = mobj.group('feed_id')
  240. real_url = self._URL_TEMPLATE % (self.http_scheme(), provider_id, feed_id, video_id)
  241. feed = self._download_json(real_url, video_id)
  242. entry = feed['entries'][0]
  243. formats = []
  244. subtitles = {}
  245. first_video_id = None
  246. duration = None
  247. for item in entry['media$content']:
  248. smil_url = item['plfile$url'] + '&mbr=true'
  249. cur_video_id = ThePlatformIE._match_id(smil_url)
  250. if first_video_id is None:
  251. first_video_id = cur_video_id
  252. duration = float_or_none(item.get('plfile$duration'))
  253. cur_formats, cur_subtitles = self._extract_theplatform_smil(smil_url, video_id, 'Downloading SMIL data for %s' % cur_video_id)
  254. formats.extend(cur_formats)
  255. subtitles = self._merge_subtitles(subtitles, cur_subtitles)
  256. self._sort_formats(formats)
  257. thumbnails = [{
  258. 'url': thumbnail['plfile$url'],
  259. 'width': int_or_none(thumbnail.get('plfile$width')),
  260. 'height': int_or_none(thumbnail.get('plfile$height')),
  261. } for thumbnail in entry.get('media$thumbnails', [])]
  262. timestamp = int_or_none(entry.get('media$availableDate'), scale=1000)
  263. categories = [item['media$name'] for item in entry.get('media$categories', [])]
  264. ret = self.get_metadata('%s/%s' % (provider_id, first_video_id), video_id)
  265. subtitles = self._merge_subtitles(subtitles, ret['subtitles'])
  266. ret.update({
  267. 'id': video_id,
  268. 'formats': formats,
  269. 'subtitles': subtitles,
  270. 'thumbnails': thumbnails,
  271. 'duration': duration,
  272. 'timestamp': timestamp,
  273. 'categories': categories,
  274. })
  275. return ret