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