theplatform.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. import re
  4. import json
  5. import time
  6. import hmac
  7. import binascii
  8. import hashlib
  9. from .common import InfoExtractor
  10. from ..compat import (
  11. compat_parse_qs,
  12. compat_urllib_parse_urlparse,
  13. )
  14. from ..utils import (
  15. determine_ext,
  16. ExtractorError,
  17. xpath_with_ns,
  18. unsmuggle_url,
  19. int_or_none,
  20. url_basename,
  21. float_or_none,
  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(InfoExtractor):
  26. def _extract_theplatform_smil_formats(self, smil_url, video_id, note='Downloading SMIL data'):
  27. meta = self._download_xml(smil_url, video_id, note=note)
  28. try:
  29. error_msg = next(
  30. n.attrib['abstract']
  31. for n in meta.findall(_x('.//smil:ref'))
  32. if n.attrib.get('title') == 'Geographic Restriction' or n.attrib.get('title') == 'Expired')
  33. except StopIteration:
  34. pass
  35. else:
  36. raise ExtractorError(error_msg, expected=True)
  37. formats = self._parse_smil_formats(
  38. meta, smil_url, video_id, namespace=default_ns,
  39. # the parameters are from syfy.com, other sites may use others,
  40. # they also work for nbc.com
  41. f4m_params={'g': 'UXWGVKRWHFSP', 'hdcore': '3.0.3'},
  42. transform_rtmp_url=lambda streamer, src: (streamer, 'mp4:' + src))
  43. for _format in formats:
  44. ext = determine_ext(_format['url'])
  45. if ext == 'once':
  46. _format['ext'] = 'mp4'
  47. self._sort_formats(formats)
  48. return formats
  49. def get_metadata(self, path, video_id):
  50. info_url = 'http://link.theplatform.com/s/%s?format=preview' % path
  51. info_json = self._download_webpage(info_url, video_id)
  52. info = json.loads(info_json)
  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': 'srt' if mime == 'text/srt' else 'ttml',
  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': '734f3790fb5fc4903da391beeebc4836',
  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. 'categories': ['Today/Shows/Orange Room', 'Today/Sections/Money', 'Today/Topics/Tech', "Today/Topics/Editor's picks"],
  125. },
  126. }]
  127. @staticmethod
  128. def _sign_url(url, sig_key, sig_secret, life=600, include_qs=False):
  129. flags = '10' if include_qs else '00'
  130. expiration_date = '%x' % (int(time.time()) + life)
  131. def str_to_hex(str):
  132. return binascii.b2a_hex(str.encode('ascii')).decode('ascii')
  133. def hex_to_str(hex):
  134. return binascii.a2b_hex(hex)
  135. relative_path = url.split('http://link.theplatform.com/s/')[1].split('?')[0]
  136. clear_text = hex_to_str(flags + expiration_date + str_to_hex(relative_path))
  137. checksum = hmac.new(sig_key.encode('ascii'), clear_text, hashlib.sha1).hexdigest()
  138. sig = flags + expiration_date + checksum + str_to_hex(sig_secret)
  139. return '%s&sig=%s' % (url, sig)
  140. def _real_extract(self, url):
  141. url, smuggled_data = unsmuggle_url(url, {})
  142. mobj = re.match(self._VALID_URL, url)
  143. provider_id = mobj.group('provider_id')
  144. video_id = mobj.group('id')
  145. if not provider_id:
  146. provider_id = 'dJ5BDC'
  147. path = provider_id
  148. if mobj.group('media'):
  149. path += '/media'
  150. path += '/' + video_id
  151. qs_dict = compat_parse_qs(compat_urllib_parse_urlparse(url).query)
  152. if 'guid' in qs_dict:
  153. webpage = self._download_webpage(url, video_id)
  154. scripts = re.findall(r'<script[^>]+src="([^"]+)"', webpage)
  155. feed_id = None
  156. # feed id usually locates in the last script.
  157. # Seems there's no pattern for the interested script filename, so
  158. # I try one by one
  159. for script in reversed(scripts):
  160. feed_script = self._download_webpage(script, video_id, 'Downloading feed script')
  161. feed_id = self._search_regex(r'defaultFeedId\s*:\s*"([^"]+)"', feed_script, 'default feed id', default=None)
  162. if feed_id is not None:
  163. break
  164. if feed_id is None:
  165. raise ExtractorError('Unable to find feed id')
  166. return self.url_result('http://feed.theplatform.com/f/%s/%s?byGuid=%s' % (
  167. provider_id, feed_id, qs_dict['guid'][0]))
  168. if smuggled_data.get('force_smil_url', False):
  169. smil_url = url
  170. elif mobj.group('config'):
  171. config_url = url + '&form=json'
  172. config_url = config_url.replace('swf/', 'config/')
  173. config_url = config_url.replace('onsite/', 'onsite/config/')
  174. config = self._download_json(config_url, video_id, 'Downloading config')
  175. if 'releaseUrl' in config:
  176. release_url = config['releaseUrl']
  177. else:
  178. release_url = 'http://link.theplatform.com/s/%s?mbr=true' % path
  179. smil_url = release_url + '&format=SMIL&formats=MPEG4&manifest=f4m'
  180. else:
  181. smil_url = 'http://link.theplatform.com/s/%s/meta.smil?format=smil&mbr=true' % path
  182. sig = smuggled_data.get('sig')
  183. if sig:
  184. smil_url = self._sign_url(smil_url, sig['key'], sig['secret'])
  185. formats = self._extract_theplatform_smil_formats(smil_url, video_id)
  186. ret = self.get_metadata(path, video_id)
  187. ret.update({
  188. 'id': video_id,
  189. 'formats': formats,
  190. })
  191. return ret
  192. class ThePlatformFeedIE(ThePlatformBaseIE):
  193. _URL_TEMPLATE = '%s//feed.theplatform.com/f/%s/%s?form=json&byGuid=%s'
  194. _VALID_URL = r'https?://feed\.theplatform\.com/f/(?P<provider_id>[^/]+)/(?P<feed_id>[^?/]+)\?(?:[^&]+&)*byGuid=(?P<id>[a-zA-Z0-9_]+)'
  195. _TEST = {
  196. # From http://player.theplatform.com/p/7wvmTC/MSNBCEmbeddedOffSite?guid=n_hardball_5biden_140207
  197. 'url': 'http://feed.theplatform.com/f/7wvmTC/msnbc_video-p-test?form=json&pretty=true&range=-40&byGuid=n_hardball_5biden_140207',
  198. 'md5': '22d2b84f058d3586efcd99e57d59d314',
  199. 'info_dict': {
  200. 'id': 'n_hardball_5biden_140207',
  201. 'ext': 'mp4',
  202. 'title': 'The Biden factor: will Joe run in 2016?',
  203. 'description': 'Could Vice President Joe Biden be preparing a 2016 campaign? Mark Halperin and Sam Stein weigh in.',
  204. 'thumbnail': 're:^https?://.*\.jpg$',
  205. 'upload_date': '20140208',
  206. 'timestamp': 1391824260,
  207. 'duration': 467.0,
  208. 'categories': ['MSNBC/Issues/Democrats', 'MSNBC/Issues/Elections/Election 2016'],
  209. },
  210. }
  211. def _real_extract(self, url):
  212. mobj = re.match(self._VALID_URL, url)
  213. video_id = mobj.group('id')
  214. provider_id = mobj.group('provider_id')
  215. feed_id = mobj.group('feed_id')
  216. real_url = self._URL_TEMPLATE % (self.http_scheme(), provider_id, feed_id, video_id)
  217. feed = self._download_json(real_url, video_id)
  218. entry = feed['entries'][0]
  219. formats = []
  220. first_video_id = None
  221. duration = None
  222. for item in entry['media$content']:
  223. smil_url = item['plfile$url'] + '&format=SMIL&Tracking=true&Embedded=true&formats=MPEG4,F4M'
  224. cur_video_id = url_basename(smil_url)
  225. if first_video_id is None:
  226. first_video_id = cur_video_id
  227. duration = float_or_none(item.get('plfile$duration'))
  228. formats.extend(self._extract_theplatform_smil_formats(smil_url, video_id, 'Downloading SMIL data for %s' % cur_video_id))
  229. self._sort_formats(formats)
  230. thumbnails = [{
  231. 'url': thumbnail['plfile$url'],
  232. 'width': int_or_none(thumbnail.get('plfile$width')),
  233. 'height': int_or_none(thumbnail.get('plfile$height')),
  234. } for thumbnail in entry.get('media$thumbnails', [])]
  235. timestamp = int_or_none(entry.get('media$availableDate'), scale=1000)
  236. categories = [item['media$name'] for item in entry.get('media$categories', [])]
  237. ret = self.get_metadata('%s/%s' % (provider_id, first_video_id), video_id)
  238. ret.update({
  239. 'id': video_id,
  240. 'formats': formats,
  241. 'thumbnails': thumbnails,
  242. 'duration': duration,
  243. 'timestamp': timestamp,
  244. 'categories': categories,
  245. })
  246. return ret