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