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.

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