ooyala.py 6.9 KB

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