]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/ooyala.py
1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
12 class OoyalaIE(InfoExtractor
):
13 _VALID_URL
= r
'(?:ooyala:|https?://.+?\.ooyala\.com/.*?(?:embedCode|ec)=)(?P<id>.+?)(&|$)'
17 # From http://it.slashdot.org/story/13/04/25/178216/recovering-data-from-broken-hard-drives-and-ssds-video
18 'url': 'http://player.ooyala.com/player.js?embedCode=pxczE2YjpfHfn1f3M-ykG_AmJRRn0PD8',
20 'id': 'pxczE2YjpfHfn1f3M-ykG_AmJRRn0PD8',
22 'title': 'Explaining Data Recovery from Hard Drives and SSDs',
23 'description': 'How badly damaged does a drive have to be to defeat Russell and his crew? Apparently, smashed to bits.',
26 # Only available for ipad
27 'url': 'http://player.ooyala.com/player.js?embedCode=x1b3lqZDq9y_7kMyC2Op5qo-p077tXD0',
29 'id': 'x1b3lqZDq9y_7kMyC2Op5qo-p077tXD0',
31 'title': 'Simulation Overview - Levels of Simulation',
38 def _url_for_embed_code(embed_code
):
39 return 'http://player.ooyala.com/player.js?embedCode=%s' % embed_code
42 def _build_url_result(cls
, embed_code
):
43 return cls
.url_result(cls
._url
_for
_embed
_code
(embed_code
),
46 def _extract_result(self
, info
, more_info
):
48 'id': info
['embedCode'],
50 'title': unescapeHTML(info
['title']),
51 'url': info
.get('ipad_url') or info
['url'],
52 'description': unescapeHTML(more_info
['description']),
53 'thumbnail': more_info
['promo'],
56 def _real_extract(self
, url
):
57 mobj
= re
.match(self
._VALID
_URL
, url
)
58 embedCode
= mobj
.group('id')
59 player_url
= 'http://player.ooyala.com/player.js?embedCode=%s' % embedCode
60 player
= self
._download
_webpage
(player_url
, embedCode
)
61 mobile_url
= self
._search
_regex
(r
'mobile_player_url="(.+?)&device="',
62 player
, 'mobile player url')
63 # Looks like some videos are only available for particular devices
64 # (e.g. http://player.ooyala.com/player.js?embedCode=x1b3lqZDq9y_7kMyC2Op5qo-p077tXD0
65 # is only available for ipad)
66 # Working around with fetching URLs for all the devices found starting with 'unknown'
67 # until we succeed or eventually fail for each device.
68 devices
= re
.findall(r
'device\s*=\s*"([^"]+)";', player
)
69 devices
.remove('unknown')
70 devices
.insert(0, 'unknown')
71 for device
in devices
:
72 mobile_player
= self
._download
_webpage
(
73 '%s&device=%s' % (mobile_url
, device
), embedCode
,
74 'Downloading mobile player JS for %s device' % device
)
75 videos_info
= self
._search
_regex
(
76 r
'var streams=window.oo_testEnv\?\[\]:eval\("\((\[{.*?}\])\)"\);',
77 mobile_player
, 'info', fatal
=False, default
=None)
81 raise ExtractorError('Unable to extract info')
82 videos_info
= videos_info
.replace('\\"', '"')
83 videos_more_info
= self
._search
_regex
(
84 r
'eval\("\(({.*?\\"promo\\".*?})\)"', mobile_player
, 'more info').replace('\\"', '"')
85 videos_info
= json
.loads(videos_info
)
86 videos_more_info
= json
.loads(videos_more_info
)
88 if videos_more_info
.get('lineup'):
89 videos
= [self
._extract
_result
(info
, more_info
) for (info
, more_info
) in zip(videos_info
, videos_more_info
['lineup'])]
93 'title': unescapeHTML(videos_more_info
['title']),
97 return self
._extract
_result
(videos_info
[0], videos_more_info
)