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.

315 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 .common import InfoExtractor
  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. xpath_with_ns,
  21. mimetype2ext,
  22. find_xpath_attr,
  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(InfoExtractor):
  27. def _extract_theplatform_smil(self, smil_url, video_id, note='Downloading SMIL data'):
  28. meta = self._download_xml(smil_url, video_id, note=note)
  29. error_element = find_xpath_attr(
  30. meta, _x('.//smil:ref'), 'src',
  31. 'http://link.theplatform.com/s/errorFiles/Unavailable.mp4')
  32. if error_element is not None:
  33. raise ExtractorError(error_element.attrib['abstract'], expected=True)
  34. 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. for _format in formats:
  41. ext = determine_ext(_format['url'])
  42. if ext == 'once':
  43. _format['ext'] = 'mp4'
  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': '734f3790fb5fc4903da391beeebc4836',
  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. 'categories': ['Today/Shows/Orange Room', 'Today/Sections/Money', 'Today/Topics/Tech', "Today/Topics/Editor's picks"],
  122. },
  123. }, {
  124. # From http://www.nbc.com/the-blacklist/video/sir-crispin-crandall/2928790?onid=137781#vc137781=1
  125. # geo-restricted (US), HLS encrypted with AES-128
  126. 'url': 'http://player.theplatform.com/p/NnzsPC/onsite_universal/select/media/guid/2410887629/2928790?fwsitesection=nbc_the_blacklist_video_library&autoPlay=true&carouselID=137781',
  127. 'only_matching': True,
  128. }]
  129. @staticmethod
  130. def _sign_url(url, sig_key, sig_secret, life=600, include_qs=False):
  131. flags = '10' if include_qs else '00'
  132. expiration_date = '%x' % (int(time.time()) + life)
  133. def str_to_hex(str):
  134. return binascii.b2a_hex(str.encode('ascii')).decode('ascii')
  135. def hex_to_str(hex):
  136. return binascii.a2b_hex(hex)
  137. relative_path = url.split('http://link.theplatform.com/s/')[1].split('?')[0]
  138. clear_text = hex_to_str(flags + expiration_date + str_to_hex(relative_path))
  139. checksum = hmac.new(sig_key.encode('ascii'), clear_text, hashlib.sha1).hexdigest()
  140. sig = flags + expiration_date + checksum + str_to_hex(sig_secret)
  141. return '%s&sig=%s' % (url, sig)
  142. def _real_extract(self, url):
  143. url, smuggled_data = unsmuggle_url(url, {})
  144. mobj = re.match(self._VALID_URL, url)
  145. provider_id = mobj.group('provider_id')
  146. video_id = mobj.group('id')
  147. if not provider_id:
  148. provider_id = 'dJ5BDC'
  149. path = provider_id
  150. if mobj.group('media'):
  151. path += '/media'
  152. path += '/' + video_id
  153. qs_dict = compat_parse_qs(compat_urllib_parse_urlparse(url).query)
  154. if 'guid' in qs_dict:
  155. webpage = self._download_webpage(url, video_id)
  156. scripts = re.findall(r'<script[^>]+src="([^"]+)"', webpage)
  157. feed_id = None
  158. # feed id usually locates in the last script.
  159. # Seems there's no pattern for the interested script filename, so
  160. # I try one by one
  161. for script in reversed(scripts):
  162. feed_script = self._download_webpage(
  163. self._proto_relative_url(script, 'http:'),
  164. video_id, 'Downloading feed script')
  165. feed_id = self._search_regex(
  166. r'defaultFeedId\s*:\s*"([^"]+)"', feed_script,
  167. 'default feed id', default=None)
  168. if feed_id is not None:
  169. break
  170. if feed_id is None:
  171. raise ExtractorError('Unable to find feed id')
  172. return self.url_result('http://feed.theplatform.com/f/%s/%s?byGuid=%s' % (
  173. provider_id, feed_id, qs_dict['guid'][0]))
  174. if smuggled_data.get('force_smil_url', False):
  175. smil_url = url
  176. # Explicitly specified SMIL (see https://github.com/rg3/youtube-dl/issues/7385)
  177. elif '/guid/' in url:
  178. headers = {}
  179. source_url = smuggled_data.get('source_url')
  180. if source_url:
  181. headers['Referer'] = source_url
  182. request = sanitized_Request(url, headers=headers)
  183. webpage = self._download_webpage(request, video_id)
  184. smil_url = self._search_regex(
  185. r'<link[^>]+href=(["\'])(?P<url>.+?)\1[^>]+type=["\']application/smil\+xml',
  186. webpage, 'smil url', group='url')
  187. path = self._search_regex(
  188. r'link\.theplatform\.com/s/((?:[^/?#&]+/)+[^/?#&]+)', smil_url, 'path')
  189. smil_url += '?' if '?' not in smil_url else '&' + 'formats=m3u,mpeg4&format=SMIL'
  190. elif mobj.group('config'):
  191. config_url = url + '&form=json'
  192. config_url = config_url.replace('swf/', 'config/')
  193. config_url = config_url.replace('onsite/', 'onsite/config/')
  194. config = self._download_json(config_url, video_id, 'Downloading config')
  195. if 'releaseUrl' in config:
  196. release_url = config['releaseUrl']
  197. else:
  198. release_url = 'http://link.theplatform.com/s/%s?mbr=true' % path
  199. smil_url = release_url + '&format=SMIL&formats=MPEG4&manifest=f4m'
  200. else:
  201. smil_url = 'http://link.theplatform.com/s/%s/meta.smil?format=smil&mbr=true' % path
  202. sig = smuggled_data.get('sig')
  203. if sig:
  204. smil_url = self._sign_url(smil_url, sig['key'], sig['secret'])
  205. formats, subtitles = self._extract_theplatform_smil(smil_url, video_id)
  206. ret = self.get_metadata(path, video_id)
  207. combined_subtitles = self._merge_subtitles(ret.get('subtitles', {}), subtitles)
  208. ret.update({
  209. 'id': video_id,
  210. 'formats': formats,
  211. 'subtitles': combined_subtitles,
  212. })
  213. return ret
  214. class ThePlatformFeedIE(ThePlatformBaseIE):
  215. _URL_TEMPLATE = '%s//feed.theplatform.com/f/%s/%s?form=json&byGuid=%s'
  216. _VALID_URL = r'https?://feed\.theplatform\.com/f/(?P<provider_id>[^/]+)/(?P<feed_id>[^?/]+)\?(?:[^&]+&)*byGuid=(?P<id>[a-zA-Z0-9_]+)'
  217. _TEST = {
  218. # From http://player.theplatform.com/p/7wvmTC/MSNBCEmbeddedOffSite?guid=n_hardball_5biden_140207
  219. 'url': 'http://feed.theplatform.com/f/7wvmTC/msnbc_video-p-test?form=json&pretty=true&range=-40&byGuid=n_hardball_5biden_140207',
  220. 'md5': '22d2b84f058d3586efcd99e57d59d314',
  221. 'info_dict': {
  222. 'id': 'n_hardball_5biden_140207',
  223. 'ext': 'mp4',
  224. 'title': 'The Biden factor: will Joe run in 2016?',
  225. 'description': 'Could Vice President Joe Biden be preparing a 2016 campaign? Mark Halperin and Sam Stein weigh in.',
  226. 'thumbnail': 're:^https?://.*\.jpg$',
  227. 'upload_date': '20140208',
  228. 'timestamp': 1391824260,
  229. 'duration': 467.0,
  230. 'categories': ['MSNBC/Issues/Democrats', 'MSNBC/Issues/Elections/Election 2016'],
  231. },
  232. }
  233. def _real_extract(self, url):
  234. mobj = re.match(self._VALID_URL, url)
  235. video_id = mobj.group('id')
  236. provider_id = mobj.group('provider_id')
  237. feed_id = mobj.group('feed_id')
  238. real_url = self._URL_TEMPLATE % (self.http_scheme(), provider_id, feed_id, video_id)
  239. feed = self._download_json(real_url, video_id)
  240. entry = feed['entries'][0]
  241. formats = []
  242. subtitles = {}
  243. first_video_id = None
  244. duration = None
  245. for item in entry['media$content']:
  246. smil_url = item['plfile$url'] + '&format=SMIL&mbr=true'
  247. cur_video_id = ThePlatformIE._match_id(smil_url)
  248. if first_video_id is None:
  249. first_video_id = cur_video_id
  250. duration = float_or_none(item.get('plfile$duration'))
  251. cur_formats, cur_subtitles = self._extract_theplatform_smil(smil_url, video_id, 'Downloading SMIL data for %s' % cur_video_id)
  252. formats.extend(cur_formats)
  253. subtitles = self._merge_subtitles(subtitles, cur_subtitles)
  254. self._sort_formats(formats)
  255. thumbnails = [{
  256. 'url': thumbnail['plfile$url'],
  257. 'width': int_or_none(thumbnail.get('plfile$width')),
  258. 'height': int_or_none(thumbnail.get('plfile$height')),
  259. } for thumbnail in entry.get('media$thumbnails', [])]
  260. timestamp = int_or_none(entry.get('media$availableDate'), scale=1000)
  261. categories = [item['media$name'] for item in entry.get('media$categories', [])]
  262. ret = self.get_metadata('%s/%s' % (provider_id, first_video_id), video_id)
  263. subtitles = self._merge_subtitles(subtitles, ret['subtitles'])
  264. ret.update({
  265. 'id': video_id,
  266. 'formats': formats,
  267. 'subtitles': subtitles,
  268. 'thumbnails': thumbnails,
  269. 'duration': duration,
  270. 'timestamp': timestamp,
  271. 'categories': categories,
  272. })
  273. return ret