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.

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