2014-02-04 22:02:53 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-06-23 20:25:46 +00:00
|
|
|
from .common import InfoExtractor
|
2014-12-13 11:24:42 +00:00
|
|
|
from ..compat import (
|
2013-06-23 20:25:46 +00:00
|
|
|
compat_urllib_parse,
|
|
|
|
compat_urllib_request,
|
2014-12-13 11:24:42 +00:00
|
|
|
)
|
|
|
|
from ..utils import (
|
2013-06-23 20:25:46 +00:00
|
|
|
ExtractorError,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class Vbox7IE(InfoExtractor):
|
2014-12-13 11:24:42 +00:00
|
|
|
_VALID_URL = r'http://(?:www\.)?vbox7\.com/play:(?P<id>[^/]+)'
|
2013-06-27 18:46:46 +00:00
|
|
|
_TEST = {
|
2014-02-04 22:02:53 +00:00
|
|
|
'url': 'http://vbox7.com/play:249bb972c2',
|
|
|
|
'md5': '99f65c0c9ef9b682b97313e052734c3f',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '249bb972c2',
|
2014-09-27 08:53:02 +00:00
|
|
|
'ext': 'mp4',
|
2014-02-04 22:02:53 +00:00
|
|
|
'title': 'Смях! Чудо - чист за секунди - Скрита камера',
|
|
|
|
},
|
2013-06-27 18:46:46 +00:00
|
|
|
}
|
2013-06-23 20:25:46 +00:00
|
|
|
|
2014-02-04 22:02:53 +00:00
|
|
|
def _real_extract(self, url):
|
2014-12-13 11:24:42 +00:00
|
|
|
video_id = self._match_id(url)
|
2013-06-23 20:25:46 +00:00
|
|
|
|
|
|
|
redirect_page, urlh = self._download_webpage_handle(url, video_id)
|
2014-02-04 22:02:53 +00:00
|
|
|
new_location = self._search_regex(r'window\.location = \'(.*)\';',
|
2014-11-23 20:39:15 +00:00
|
|
|
redirect_page, 'redirect location')
|
2013-06-23 20:25:46 +00:00
|
|
|
redirect_url = urlh.geturl() + new_location
|
2014-02-04 22:02:53 +00:00
|
|
|
webpage = self._download_webpage(redirect_url, video_id,
|
2014-11-23 20:39:15 +00:00
|
|
|
'Downloading redirect page')
|
2013-06-23 20:25:46 +00:00
|
|
|
|
|
|
|
title = self._html_search_regex(r'<title>(.*)</title>',
|
2014-11-23 20:39:15 +00:00
|
|
|
webpage, 'title').split('/')[0].strip()
|
2013-06-23 20:25:46 +00:00
|
|
|
|
|
|
|
info_url = "http://vbox7.com/play/magare.do"
|
2014-02-04 22:02:53 +00:00
|
|
|
data = compat_urllib_parse.urlencode({'as3': '1', 'vid': video_id})
|
2013-06-23 20:25:46 +00:00
|
|
|
info_request = compat_urllib_request.Request(info_url, data)
|
|
|
|
info_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
|
2014-02-04 22:02:53 +00:00
|
|
|
info_response = self._download_webpage(info_request, video_id, 'Downloading info webpage')
|
2013-06-23 20:25:46 +00:00
|
|
|
if info_response is None:
|
2014-02-04 22:02:53 +00:00
|
|
|
raise ExtractorError('Unable to extract the media url')
|
2013-06-23 20:25:46 +00:00
|
|
|
(final_url, thumbnail_url) = map(lambda x: x.split('=')[1], info_response.split('&'))
|
|
|
|
|
2014-02-04 22:02:53 +00:00
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'url': final_url,
|
|
|
|
'title': title,
|
2013-06-23 20:25:46 +00:00
|
|
|
'thumbnail': thumbnail_url,
|
2014-02-04 22:02:53 +00:00
|
|
|
}
|