2 from __future__
import unicode_literals
4 from .common
import InfoExtractor
14 class Vbox7IE(InfoExtractor
):
15 _VALID_URL
= r
'http://(?:www\.)?vbox7\.com/play:(?P<id>[^/]+)'
17 'url': 'http://vbox7.com/play:249bb972c2',
18 'md5': '99f65c0c9ef9b682b97313e052734c3f',
22 'title': 'Смях! Чудо - чист за секунди - Скрита камера',
26 def _real_extract(self
, url
):
27 video_id
= self
._match
_id
(url
)
29 redirect_page
, urlh
= self
._download
_webpage
_handle
(url
, video_id
)
30 new_location
= self
._search
_regex
(r
'window\.location = \'(.*)\';',
31 redirect_page, 'redirect location
')
32 redirect_url = urlh.geturl() + new_location
33 webpage = self._download_webpage(redirect_url, video_id,
34 'Downloading redirect page
')
36 title = self._html_search_regex(r'<title
>(.*)</title
>',
37 webpage, 'title
').split('/')[0].strip()
39 info_url = "http://vbox7.com/play/magare.do"
40 data = compat_urllib_parse.urlencode({'as3
': '1', 'vid
': video_id})
41 info_request = compat_urllib_request.Request(info_url, data)
42 info_request.add_header('Content
-Type
', 'application
/x
-www
-form
-urlencoded
')
43 info_response = self._download_webpage(info_request, video_id, 'Downloading info webpage
')
44 if info_response is None:
45 raise ExtractorError('Unable to extract the media url
')
46 (final_url, thumbnail_url) = map(lambda x: x.split('=')[1], info_response.split('&'))
52 'thumbnail
': thumbnail_url,