ooyala.py 6.3 KB

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