2014-09-18 04:57:01 +09:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2015-01-23 01:35:53 +09:00
|
|
|
import re
|
|
|
|
|
2014-09-18 04:57:01 +09:00
|
|
|
from .common import InfoExtractor
|
2016-02-26 16:00:48 +09:00
|
|
|
from ..utils import (
|
|
|
|
decode_packed_codes,
|
|
|
|
sanitized_Request,
|
|
|
|
)
|
2014-09-18 04:57:01 +09:00
|
|
|
|
|
|
|
|
|
|
|
class VideoMegaIE(InfoExtractor):
|
2015-07-18 07:27:09 +09:00
|
|
|
_VALID_URL = r'(?:videomega:|https?://(?:www\.)?videomega\.tv/(?:(?:view|iframe|cdn)\.php)?\?ref=)(?P<id>[A-Za-z0-9]+)'
|
2015-07-18 07:25:30 +09:00
|
|
|
_TESTS = [{
|
2015-07-18 07:25:10 +09:00
|
|
|
'url': 'http://videomega.tv/cdn.php?ref=AOSQBJYKIDDIKYJBQSOA',
|
2015-07-18 07:13:45 +09:00
|
|
|
'md5': 'cc1920a58add3f05c6a93285b84fb3aa',
|
2014-09-18 04:57:01 +09:00
|
|
|
'info_dict': {
|
2015-07-18 07:13:45 +09:00
|
|
|
'id': 'AOSQBJYKIDDIKYJBQSOA',
|
2014-09-18 04:57:01 +09:00
|
|
|
'ext': 'mp4',
|
2015-07-18 07:13:45 +09:00
|
|
|
'title': '1254207',
|
2014-09-18 04:57:01 +09:00
|
|
|
'thumbnail': 're:^https?://.*\.jpg$',
|
|
|
|
}
|
2015-07-18 07:25:30 +09:00
|
|
|
}, {
|
|
|
|
'url': 'http://videomega.tv/cdn.php?ref=AOSQBJYKIDDIKYJBQSOA&width=1070&height=600',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'http://videomega.tv/view.php?ref=090051111052065112106089103052052103089106112065052111051090',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
2014-09-18 04:57:01 +09:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2014-12-13 20:24:42 +09:00
|
|
|
video_id = self._match_id(url)
|
2015-01-16 02:57:36 +09:00
|
|
|
|
2015-07-18 07:25:10 +09:00
|
|
|
iframe_url = 'http://videomega.tv/cdn.php?ref=%s' % video_id
|
2015-11-22 01:18:17 +09:00
|
|
|
req = sanitized_Request(iframe_url)
|
2015-01-16 02:57:36 +09:00
|
|
|
req.add_header('Referer', url)
|
2015-07-18 07:13:45 +09:00
|
|
|
req.add_header('Cookie', 'noadvtday=0')
|
2015-01-16 02:57:36 +09:00
|
|
|
webpage = self._download_webpage(req, video_id)
|
2014-09-18 04:57:01 +09:00
|
|
|
|
2015-03-20 02:37:39 +09:00
|
|
|
title = self._html_search_regex(
|
2015-07-18 07:13:45 +09:00
|
|
|
r'<title>(.+?)</title>', webpage, 'title')
|
2015-03-20 02:37:39 +09:00
|
|
|
title = re.sub(
|
2015-07-18 07:13:45 +09:00
|
|
|
r'(?:^[Vv]ideo[Mm]ega\.tv\s-\s*|\s*-\svideomega\.tv$)', '', title)
|
2014-09-18 04:57:01 +09:00
|
|
|
thumbnail = self._search_regex(
|
2015-03-20 02:37:39 +09:00
|
|
|
r'<video[^>]+?poster="([^"]+)"', webpage, 'thumbnail', fatal=False)
|
2016-02-26 16:00:48 +09:00
|
|
|
|
|
|
|
real_codes = decode_packed_codes(webpage)
|
2015-03-20 02:37:39 +09:00
|
|
|
video_url = self._search_regex(
|
2016-02-26 16:00:48 +09:00
|
|
|
r'"src"\s*,\s*"([^"]+)"', real_codes, 'video URL')
|
2014-09-18 04:57:01 +09:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
2015-03-20 02:37:39 +09:00
|
|
|
'url': video_url,
|
2014-09-18 04:57:01 +09:00
|
|
|
'thumbnail': thumbnail,
|
2015-01-25 02:19:58 +09:00
|
|
|
'http_headers': {
|
2015-07-18 07:25:10 +09:00
|
|
|
'Referer': iframe_url,
|
2015-01-25 02:19:58 +09:00
|
|
|
},
|
2014-09-18 04:57:01 +09:00
|
|
|
}
|