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.

176 lines
7.4 KiB

  1. from __future__ import unicode_literals
  2. import re
  3. import base64
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. int_or_none,
  7. float_or_none,
  8. ExtractorError,
  9. unsmuggle_url,
  10. )
  11. from ..compat import compat_urllib_parse_urlencode
  12. class OoyalaBaseIE(InfoExtractor):
  13. _PLAYER_BASE = 'http://player.ooyala.com/'
  14. _CONTENT_TREE_BASE = _PLAYER_BASE + 'player_api/v1/content_tree/'
  15. _AUTHORIZATION_URL_TEMPLATE = _PLAYER_BASE + 'sas/player_api/v1/authorization/embed_code/%s/%s?'
  16. def _extract(self, content_tree_url, video_id, domain='example.org'):
  17. content_tree = self._download_json(content_tree_url, video_id)['content_tree']
  18. metadata = content_tree[list(content_tree)[0]]
  19. embed_code = metadata['embed_code']
  20. pcode = metadata.get('asset_pcode') or embed_code
  21. video_info = {
  22. 'id': embed_code,
  23. 'title': metadata['title'],
  24. 'description': metadata.get('description'),
  25. 'thumbnail': metadata.get('thumbnail_image') or metadata.get('promo_image'),
  26. 'duration': float_or_none(metadata.get('duration'), 1000),
  27. }
  28. urls = []
  29. formats = []
  30. for supported_format in ('mp4', 'm3u8', 'hds', 'rtmp'):
  31. auth_data = self._download_json(
  32. self._AUTHORIZATION_URL_TEMPLATE % (pcode, embed_code) +
  33. compat_urllib_parse_urlencode({
  34. 'domain': domain,
  35. 'supportedFormats': supported_format
  36. }),
  37. video_id, 'Downloading %s JSON' % supported_format)
  38. cur_auth_data = auth_data['authorization_data'][embed_code]
  39. if cur_auth_data['authorized']:
  40. for stream in cur_auth_data['streams']:
  41. url = base64.b64decode(
  42. stream['url']['data'].encode('ascii')).decode('utf-8')
  43. if url in urls:
  44. continue
  45. urls.append(url)
  46. delivery_type = stream['delivery_type']
  47. if delivery_type == 'hls' or '.m3u8' in url:
  48. formats.extend(self._extract_m3u8_formats(
  49. url, embed_code, 'mp4', 'm3u8_native',
  50. m3u8_id='hls', fatal=False))
  51. elif delivery_type == 'hds' or '.f4m' in url:
  52. formats.extend(self._extract_f4m_formats(
  53. url + '?hdcore=3.7.0', embed_code, f4m_id='hds', fatal=False))
  54. elif '.smil' in url:
  55. formats.extend(self._extract_smil_formats(
  56. url, embed_code, fatal=False))
  57. else:
  58. formats.append({
  59. 'url': url,
  60. 'ext': stream.get('delivery_type'),
  61. 'vcodec': stream.get('video_codec'),
  62. 'format_id': delivery_type,
  63. 'width': int_or_none(stream.get('width')),
  64. 'height': int_or_none(stream.get('height')),
  65. 'abr': int_or_none(stream.get('audio_bitrate')),
  66. 'vbr': int_or_none(stream.get('video_bitrate')),
  67. 'fps': float_or_none(stream.get('framerate')),
  68. })
  69. else:
  70. raise ExtractorError('%s said: %s' % (
  71. self.IE_NAME, cur_auth_data['message']), expected=True)
  72. self._sort_formats(formats)
  73. video_info['formats'] = formats
  74. return video_info
  75. class OoyalaIE(OoyalaBaseIE):
  76. _VALID_URL = r'(?:ooyala:|https?://.+?\.ooyala\.com/.*?(?:embedCode|ec)=)(?P<id>.+?)(&|$)'
  77. _TESTS = [
  78. {
  79. # From http://it.slashdot.org/story/13/04/25/178216/recovering-data-from-broken-hard-drives-and-ssds-video
  80. 'url': 'http://player.ooyala.com/player.js?embedCode=pxczE2YjpfHfn1f3M-ykG_AmJRRn0PD8',
  81. 'info_dict': {
  82. 'id': 'pxczE2YjpfHfn1f3M-ykG_AmJRRn0PD8',
  83. 'ext': 'mp4',
  84. 'title': 'Explaining Data Recovery from Hard Drives and SSDs',
  85. 'description': 'How badly damaged does a drive have to be to defeat Russell and his crew? Apparently, smashed to bits.',
  86. 'duration': 853.386,
  87. },
  88. # The video in the original webpage now uses PlayWire
  89. 'skip': 'Ooyala said: movie expired',
  90. }, {
  91. # Only available for ipad
  92. 'url': 'http://player.ooyala.com/player.js?embedCode=x1b3lqZDq9y_7kMyC2Op5qo-p077tXD0',
  93. 'info_dict': {
  94. 'id': 'x1b3lqZDq9y_7kMyC2Op5qo-p077tXD0',
  95. 'ext': 'mp4',
  96. 'title': 'Simulation Overview - Levels of Simulation',
  97. 'duration': 194.948,
  98. },
  99. },
  100. {
  101. # Information available only through SAS api
  102. # From http://community.plm.automation.siemens.com/t5/News-NX-Manufacturing/Tool-Path-Divide/ba-p/4187
  103. 'url': 'http://player.ooyala.com/player.js?embedCode=FiOG81ZTrvckcchQxmalf4aQj590qTEx',
  104. 'md5': 'a84001441b35ea492bc03736e59e7935',
  105. 'info_dict': {
  106. 'id': 'FiOG81ZTrvckcchQxmalf4aQj590qTEx',
  107. 'ext': 'mp4',
  108. 'title': 'Divide Tool Path.mp4',
  109. 'duration': 204.405,
  110. }
  111. }
  112. ]
  113. @staticmethod
  114. def _url_for_embed_code(embed_code):
  115. return 'http://player.ooyala.com/player.js?embedCode=%s' % embed_code
  116. @classmethod
  117. def _build_url_result(cls, embed_code):
  118. return cls.url_result(cls._url_for_embed_code(embed_code),
  119. ie=cls.ie_key())
  120. def _real_extract(self, url):
  121. url, smuggled_data = unsmuggle_url(url, {})
  122. embed_code = self._match_id(url)
  123. domain = smuggled_data.get('domain')
  124. content_tree_url = self._CONTENT_TREE_BASE + 'embed_code/%s/%s' % (embed_code, embed_code)
  125. return self._extract(content_tree_url, embed_code, domain)
  126. class OoyalaExternalIE(OoyalaBaseIE):
  127. _VALID_URL = r'''(?x)
  128. (?:
  129. ooyalaexternal:|
  130. https?://.+?\.ooyala\.com/.*?\bexternalId=
  131. )
  132. (?P<partner_id>[^:]+)
  133. :
  134. (?P<id>.+)
  135. (?:
  136. :|
  137. .*?&pcode=
  138. )
  139. (?P<pcode>.+?)
  140. (?:&|$)
  141. '''
  142. _TEST = {
  143. 'url': 'https://player.ooyala.com/player.js?externalId=espn:10365079&pcode=1kNG061cgaoolOncv54OAO1ceO-I&adSetCode=91cDU6NuXTGKz3OdjOxFdAgJVtQcKJnI&callback=handleEvents&hasModuleParams=1&height=968&playerBrandingId=7af3bd04449c444c964f347f11873075&targetReplaceId=videoPlayer&width=1656&wmode=opaque&allowScriptAccess=always',
  144. 'info_dict': {
  145. 'id': 'FkYWtmazr6Ed8xmvILvKLWjd4QvYZpzG',
  146. 'ext': 'mp4',
  147. 'title': 'dm_140128_30for30Shorts___JudgingJewellv2',
  148. 'duration': 1302.0,
  149. },
  150. 'params': {
  151. # m3u8 download
  152. 'skip_download': True,
  153. },
  154. }
  155. def _real_extract(self, url):
  156. partner_id, video_id, pcode = re.match(self._VALID_URL, url).groups()
  157. content_tree_url = self._CONTENT_TREE_BASE + 'external_id/%s/%s:%s' % (pcode, partner_id, video_id)
  158. return self._extract(content_tree_url, video_id)