2014-10-09 23:05:39 +09:00
|
|
|
|
# coding: utf-8
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2017-07-22 23:35:14 +09:00
|
|
|
|
from ..utils import (
|
|
|
|
|
determine_ext,
|
|
|
|
|
int_or_none,
|
|
|
|
|
js_to_json,
|
2018-10-29 02:20:29 +09:00
|
|
|
|
merge_dicts,
|
2017-07-22 23:35:14 +09:00
|
|
|
|
)
|
2014-10-09 23:05:39 +09:00
|
|
|
|
|
|
|
|
|
|
2018-10-29 02:20:29 +09:00
|
|
|
|
class SportBoxIE(InfoExtractor):
|
|
|
|
|
_VALID_URL = r'https?://(?:news\.sportbox|matchtv)\.ru/vdl/player(?:/[^/]+/|\?.*?\bn?id=)(?P<id>\d+)'
|
2015-05-16 01:50:44 +09:00
|
|
|
|
_TESTS = [{
|
|
|
|
|
'url': 'http://news.sportbox.ru/vdl/player/ci/211355',
|
|
|
|
|
'info_dict': {
|
2018-10-29 02:20:29 +09:00
|
|
|
|
'id': '109158',
|
2015-05-16 01:50:44 +09:00
|
|
|
|
'ext': 'mp4',
|
2018-10-26 17:00:55 +09:00
|
|
|
|
'title': 'В Новороссийске прошел детский турнир «Поле славы боевой»',
|
2018-10-29 02:20:29 +09:00
|
|
|
|
'description': 'В Новороссийске прошел детский турнир «Поле славы боевой»',
|
2017-01-02 21:08:07 +09:00
|
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
2017-07-22 23:35:14 +09:00
|
|
|
|
'duration': 292,
|
|
|
|
|
'view_count': int,
|
2018-10-29 02:20:29 +09:00
|
|
|
|
'timestamp': 1426237001,
|
|
|
|
|
'upload_date': '20150313',
|
2015-05-16 01:50:44 +09:00
|
|
|
|
},
|
|
|
|
|
'params': {
|
|
|
|
|
# m3u8 download
|
|
|
|
|
'skip_download': True,
|
|
|
|
|
},
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://news.sportbox.ru/vdl/player?nid=370908&only_player=1&autostart=false&playeri=2&height=340&width=580',
|
|
|
|
|
'only_matching': True,
|
2017-07-22 23:35:14 +09:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://news.sportbox.ru/vdl/player/media/193095',
|
|
|
|
|
'only_matching': True,
|
2018-10-29 02:20:29 +09:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://news.sportbox.ru/vdl/player/media/109158',
|
|
|
|
|
'only_matching': True,
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://matchtv.ru/vdl/player/media/109158',
|
|
|
|
|
'only_matching': True,
|
2015-05-16 01:50:44 +09:00
|
|
|
|
}]
|
|
|
|
|
|
2015-05-16 02:08:44 +09:00
|
|
|
|
@staticmethod
|
|
|
|
|
def _extract_urls(webpage):
|
|
|
|
|
return re.findall(
|
2018-10-29 02:20:29 +09:00
|
|
|
|
r'<iframe[^>]+src="(https?://(?:news\.sportbox|matchtv)\.ru/vdl/player[^"]+)"',
|
2015-05-16 02:08:44 +09:00
|
|
|
|
webpage)
|
|
|
|
|
|
2015-05-16 01:50:44 +09:00
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
video_id = self._match_id(url)
|
|
|
|
|
|
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
|
|
2018-10-29 02:20:29 +09:00
|
|
|
|
sources = self._parse_json(
|
2018-10-26 17:00:55 +09:00
|
|
|
|
self._search_regex(
|
2018-10-29 02:20:29 +09:00
|
|
|
|
r'(?s)playerOptions\.sources(?:WithRes)?\s*=\s*(\[.+?\])\s*;\s*\n',
|
|
|
|
|
webpage, 'sources'),
|
2018-10-26 17:00:55 +09:00
|
|
|
|
video_id, transform_source=js_to_json)
|
|
|
|
|
|
2017-07-22 23:35:14 +09:00
|
|
|
|
formats = []
|
2018-10-29 02:20:29 +09:00
|
|
|
|
for source in sources:
|
2017-07-22 23:35:14 +09:00
|
|
|
|
src = source.get('src')
|
|
|
|
|
if not src:
|
|
|
|
|
continue
|
|
|
|
|
if determine_ext(src) == 'm3u8':
|
|
|
|
|
formats.extend(self._extract_m3u8_formats(
|
|
|
|
|
src, video_id, 'mp4', entry_protocol='m3u8_native',
|
|
|
|
|
m3u8_id='hls', fatal=False))
|
|
|
|
|
else:
|
|
|
|
|
formats.append({
|
|
|
|
|
'url': src,
|
|
|
|
|
})
|
2016-04-16 17:13:14 +09:00
|
|
|
|
self._sort_formats(formats)
|
2015-05-16 01:50:44 +09:00
|
|
|
|
|
2018-10-29 02:20:29 +09:00
|
|
|
|
player = self._parse_json(
|
|
|
|
|
self._search_regex(
|
|
|
|
|
r'(?s)playerOptions\s*=\s*({.+?})\s*;\s*\n', webpage,
|
|
|
|
|
'player options', default='{}'),
|
|
|
|
|
video_id, transform_source=js_to_json)
|
|
|
|
|
media_id = player['mediaId']
|
|
|
|
|
|
|
|
|
|
info = self._search_json_ld(webpage, media_id, default={})
|
|
|
|
|
|
2017-07-22 23:35:14 +09:00
|
|
|
|
view_count = int_or_none(self._search_regex(
|
|
|
|
|
r'Просмотров\s*:\s*(\d+)', webpage, 'view count', default=None))
|
2015-05-16 01:50:44 +09:00
|
|
|
|
|
2018-10-29 02:20:29 +09:00
|
|
|
|
return merge_dicts(info, {
|
|
|
|
|
'id': media_id,
|
|
|
|
|
'title': self._og_search_title(webpage, default=None) or media_id,
|
|
|
|
|
'thumbnail': player.get('poster'),
|
|
|
|
|
'duration': int_or_none(player.get('duration')),
|
2017-07-22 23:35:14 +09:00
|
|
|
|
'view_count': view_count,
|
2014-10-09 23:05:39 +09:00
|
|
|
|
'formats': formats,
|
2018-10-29 02:20:29 +09:00
|
|
|
|
})
|