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.

204 lines
8.5 KiB

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