2015-04-02 18:32:16 +02:00
|
|
|
|
import random
|
|
|
|
|
|
2015-03-23 01:42:17 +01:00
|
|
|
|
from .common import InfoExtractor
|
2016-05-28 21:33:27 +02:00
|
|
|
|
from ..compat import compat_urlparse
|
2015-04-02 18:32:16 +02:00
|
|
|
|
from ..utils import (
|
|
|
|
|
xpath_text,
|
|
|
|
|
int_or_none,
|
2015-04-14 09:27:56 +02:00
|
|
|
|
ExtractorError,
|
2015-11-21 17:18:17 +01:00
|
|
|
|
sanitized_Request,
|
2015-04-02 18:32:16 +02:00
|
|
|
|
)
|
2015-03-23 01:42:17 +01:00
|
|
|
|
|
|
|
|
|
|
2015-04-02 18:33:30 +02:00
|
|
|
|
class MioMioIE(InfoExtractor):
|
2015-03-23 01:42:17 +01:00
|
|
|
|
IE_NAME = 'miomio.tv'
|
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?miomio\.tv/watch/cc(?P<id>[0-9]+)'
|
2015-04-02 18:32:16 +02:00
|
|
|
|
_TESTS = [{
|
2015-04-14 09:27:56 +02:00
|
|
|
|
# "type=video" in flashvars
|
|
|
|
|
'url': 'http://www.miomio.tv/watch/cc88912/',
|
2015-03-23 01:42:17 +01:00
|
|
|
|
'info_dict': {
|
2015-04-14 09:27:56 +02:00
|
|
|
|
'id': '88912',
|
2015-04-02 18:32:16 +02:00
|
|
|
|
'ext': 'flv',
|
2015-04-14 09:27:56 +02:00
|
|
|
|
'title': '【SKY】字幕 铠武昭和VS平成 假面骑士大战FEAT战队 魔星字幕组 字幕',
|
|
|
|
|
'duration': 5923,
|
2015-04-02 18:32:16 +02:00
|
|
|
|
},
|
2016-08-19 18:08:23 +02:00
|
|
|
|
'skip': 'Unable to load videos',
|
2015-04-02 18:32:16 +02:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.miomio.tv/watch/cc184024/',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '43729',
|
|
|
|
|
'title': '《动漫同人插画绘制》',
|
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 86,
|
2016-07-10 18:03:24 +02:00
|
|
|
|
'skip': 'Unable to load videos',
|
2015-04-19 13:12:23 +02:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.miomio.tv/watch/cc173113/',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '173113',
|
|
|
|
|
'title': 'The New Macbook 2015 上手试玩与简评'
|
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 2,
|
2016-07-10 18:03:24 +02:00
|
|
|
|
'skip': 'Unable to load videos',
|
2016-05-28 21:33:27 +02:00
|
|
|
|
}, {
|
|
|
|
|
# new 'h5' player
|
2016-08-19 18:08:23 +02:00
|
|
|
|
'url': 'http://www.miomio.tv/watch/cc273997/',
|
|
|
|
|
'md5': '0b27a4b4495055d826813f8c3a6b2070',
|
2016-05-28 21:33:27 +02:00
|
|
|
|
'info_dict': {
|
2016-08-19 18:08:23 +02:00
|
|
|
|
'id': '273997',
|
2016-05-28 21:33:27 +02:00
|
|
|
|
'ext': 'mp4',
|
2016-08-19 18:08:23 +02:00
|
|
|
|
'title': 'マツコの知らない世界【劇的進化SP!ビニール傘&冷凍食品2016】 1_2 - 16 05 31',
|
2016-05-28 21:33:27 +02:00
|
|
|
|
},
|
2017-03-08 12:46:58 +01:00
|
|
|
|
'skip': 'Unable to load videos',
|
2015-04-02 18:32:16 +02:00
|
|
|
|
}]
|
2015-03-23 01:42:17 +01:00
|
|
|
|
|
2016-05-28 21:33:27 +02:00
|
|
|
|
def _extract_mioplayer(self, webpage, video_id, title, http_headers):
|
2015-04-02 18:32:16 +02:00
|
|
|
|
xml_config = self._search_regex(
|
2015-04-14 09:27:56 +02:00
|
|
|
|
r'flashvars="type=(?:sina|video)&(.+?)&',
|
2015-04-02 18:32:16 +02:00
|
|
|
|
webpage, 'xml config')
|
2015-04-03 14:09:07 +02:00
|
|
|
|
|
2015-03-23 23:16:50 +01:00
|
|
|
|
# skipping the following page causes lags and eventually connection drop-outs
|
2015-04-02 18:32:16 +02:00
|
|
|
|
self._request_webpage(
|
|
|
|
|
'http://www.miomio.tv/mioplayer/mioplayerconfigfiles/xml.php?id=%s&r=%s' % (id, random.randint(100, 999)),
|
|
|
|
|
video_id)
|
2015-03-23 23:16:50 +01:00
|
|
|
|
|
2015-11-21 17:18:17 +01:00
|
|
|
|
vid_config_request = sanitized_Request(
|
2015-04-02 18:32:16 +02:00
|
|
|
|
'http://www.miomio.tv/mioplayer/mioplayerconfigfiles/sina.php?{0}'.format(xml_config),
|
2015-11-06 06:33:05 +01:00
|
|
|
|
headers=http_headers)
|
2015-11-06 02:09:55 +01:00
|
|
|
|
|
|
|
|
|
# the following xml contains the actual configuration information on the video file(s)
|
|
|
|
|
vid_config = self._download_xml(vid_config_request, video_id)
|
2015-03-23 01:42:17 +01:00
|
|
|
|
|
2015-04-14 09:27:56 +02:00
|
|
|
|
if not int_or_none(xpath_text(vid_config, 'timelength')):
|
|
|
|
|
raise ExtractorError('Unable to load videos!', expected=True)
|
|
|
|
|
|
2015-03-23 01:42:17 +01:00
|
|
|
|
entries = []
|
2015-04-02 18:32:16 +02:00
|
|
|
|
for f in vid_config.findall('./durl'):
|
|
|
|
|
segment_url = xpath_text(f, 'url', 'video url')
|
|
|
|
|
if not segment_url:
|
|
|
|
|
continue
|
|
|
|
|
order = xpath_text(f, 'order', 'order')
|
|
|
|
|
segment_id = video_id
|
|
|
|
|
segment_title = title
|
|
|
|
|
if order:
|
|
|
|
|
segment_id += '-%s' % order
|
|
|
|
|
segment_title += ' part %s' % order
|
2015-03-23 01:42:17 +01:00
|
|
|
|
entries.append({
|
|
|
|
|
'id': segment_id,
|
2015-04-02 18:32:16 +02:00
|
|
|
|
'url': segment_url,
|
2015-03-23 01:42:17 +01:00
|
|
|
|
'title': segment_title,
|
2015-04-02 18:32:16 +02:00
|
|
|
|
'duration': int_or_none(xpath_text(f, 'length', 'duration'), 1000),
|
|
|
|
|
'http_headers': http_headers,
|
2015-03-23 01:42:17 +01:00
|
|
|
|
})
|
|
|
|
|
|
2016-05-28 21:33:27 +02:00
|
|
|
|
return entries
|
|
|
|
|
|
2017-03-08 12:46:58 +01:00
|
|
|
|
def _download_chinese_webpage(self, *args, **kwargs):
|
|
|
|
|
# Requests with English locales return garbage
|
|
|
|
|
headers = {
|
|
|
|
|
'Accept-Language': 'zh-TW,en-US;q=0.7,en;q=0.3',
|
|
|
|
|
}
|
|
|
|
|
kwargs.setdefault('headers', {}).update(headers)
|
|
|
|
|
return self._download_webpage(*args, **kwargs)
|
|
|
|
|
|
2016-05-28 21:33:27 +02:00
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
video_id = self._match_id(url)
|
2017-03-08 12:46:58 +01:00
|
|
|
|
webpage = self._download_chinese_webpage(
|
|
|
|
|
url, video_id)
|
2016-05-28 21:33:27 +02:00
|
|
|
|
|
|
|
|
|
title = self._html_search_meta(
|
|
|
|
|
'description', webpage, 'title', fatal=True)
|
|
|
|
|
|
|
|
|
|
mioplayer_path = self._search_regex(
|
|
|
|
|
r'src="(/mioplayer(?:_h5)?/[^"]+)"', webpage, 'ref_path')
|
|
|
|
|
|
|
|
|
|
if '_h5' in mioplayer_path:
|
|
|
|
|
player_url = compat_urlparse.urljoin(url, mioplayer_path)
|
2017-03-08 12:46:58 +01:00
|
|
|
|
player_webpage = self._download_chinese_webpage(
|
2016-05-28 21:33:27 +02:00
|
|
|
|
player_url, video_id,
|
|
|
|
|
note='Downloading player webpage', headers={'Referer': url})
|
2016-08-19 18:08:23 +02:00
|
|
|
|
entries = self._parse_html5_media_entries(player_url, player_webpage, video_id)
|
2016-05-28 21:33:27 +02:00
|
|
|
|
http_headers = {'Referer': player_url}
|
|
|
|
|
else:
|
|
|
|
|
http_headers = {'Referer': 'http://www.miomio.tv%s' % mioplayer_path}
|
|
|
|
|
entries = self._extract_mioplayer(webpage, video_id, title, http_headers)
|
|
|
|
|
|
2015-03-23 01:42:17 +01:00
|
|
|
|
if len(entries) == 1:
|
2015-04-02 18:32:16 +02:00
|
|
|
|
segment = entries[0]
|
|
|
|
|
segment['id'] = video_id
|
|
|
|
|
segment['title'] = title
|
2016-05-28 21:33:27 +02:00
|
|
|
|
segment['http_headers'] = http_headers
|
2015-04-02 18:32:16 +02:00
|
|
|
|
return segment
|
2015-03-23 01:42:17 +01:00
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
'_type': 'multi_video',
|
|
|
|
|
'id': video_id,
|
|
|
|
|
'entries': entries,
|
2015-04-02 18:32:16 +02:00
|
|
|
|
'title': title,
|
|
|
|
|
'http_headers': http_headers,
|
2015-03-23 01:42:17 +01:00
|
|
|
|
}
|