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.

348 lines
14 KiB

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