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