2018-10-10 21:47:21 +00:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2020-11-19 19:22:59 +00:00
|
|
|
from ..utils import (
|
|
|
|
clean_html,
|
|
|
|
dict_get,
|
|
|
|
float_or_none,
|
|
|
|
int_or_none,
|
|
|
|
merge_dicts,
|
|
|
|
parse_duration,
|
|
|
|
try_get,
|
|
|
|
)
|
2018-10-10 21:47:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MallTVIE(InfoExtractor):
|
2020-06-01 14:11:31 +00:00
|
|
|
_VALID_URL = r'https?://(?:(?:www|sk)\.)?mall\.tv/(?:[^/]+/)*(?P<id>[^/?#&]+)'
|
2019-02-07 17:43:10 +00:00
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://www.mall.tv/18-miliard-pro-neziskovky-opravdu-jsou-sportovci-nebo-clovek-v-tisni-pijavice',
|
|
|
|
'md5': '1c4a37f080e1f3023103a7b43458e518',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 't0zzt0',
|
|
|
|
'display_id': '18-miliard-pro-neziskovky-opravdu-jsou-sportovci-nebo-clovek-v-tisni-pijavice',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': '18 miliard pro neziskovky. Opravdu jsou sportovci nebo Člověk v tísni pijavice?',
|
2020-11-19 19:22:59 +00:00
|
|
|
'description': 'md5:db7d5744a4bd4043d9d98324aa72ab35',
|
2019-02-07 17:43:10 +00:00
|
|
|
'duration': 216,
|
|
|
|
'timestamp': 1538870400,
|
|
|
|
'upload_date': '20181007',
|
|
|
|
'view_count': int,
|
2018-10-10 21:47:21 +00:00
|
|
|
}
|
2019-02-07 17:43:10 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.mall.tv/kdo-to-plati/18-miliard-pro-neziskovky-opravdu-jsou-sportovci-nebo-clovek-v-tisni-pijavice',
|
|
|
|
'only_matching': True,
|
2020-06-01 14:11:31 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://sk.mall.tv/gejmhaus/reklamacia-nehreje-vyrobnik-tepla-alebo-spekacka',
|
|
|
|
'only_matching': True,
|
2019-02-07 17:43:10 +00:00
|
|
|
}]
|
2018-10-10 21:47:21 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
display_id = self._match_id(url)
|
2019-02-07 17:43:10 +00:00
|
|
|
|
|
|
|
webpage = self._download_webpage(
|
|
|
|
url, display_id, headers=self.geo_verification_headers())
|
|
|
|
|
2020-11-19 19:22:59 +00:00
|
|
|
video = self._parse_json(self._search_regex(
|
|
|
|
r'videoObject\s*=\s*JSON\.parse\(JSON\.stringify\(({.+?})\)\);',
|
|
|
|
webpage, 'video object'), display_id)
|
|
|
|
video_source = video['VideoSource']
|
2019-02-07 17:43:10 +00:00
|
|
|
video_id = self._search_regex(
|
2020-11-19 19:22:59 +00:00
|
|
|
r'/([\da-z]+)/index\b', video_source, 'video id')
|
|
|
|
|
|
|
|
formats = self._extract_m3u8_formats(
|
|
|
|
video_source + '.m3u8', video_id, 'mp4', 'm3u8_native')
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
|
|
|
subtitles = {}
|
|
|
|
for s in (video.get('Subtitles') or {}):
|
|
|
|
s_url = s.get('Url')
|
|
|
|
if not s_url:
|
|
|
|
continue
|
|
|
|
subtitles.setdefault(s.get('Language') or 'cz', []).append({
|
|
|
|
'url': s_url,
|
|
|
|
})
|
|
|
|
|
|
|
|
entity_counts = video.get('EntityCounts') or {}
|
2019-02-07 17:43:10 +00:00
|
|
|
|
2020-11-19 19:22:59 +00:00
|
|
|
def get_count(k):
|
|
|
|
v = entity_counts.get(k + 's') or {}
|
|
|
|
return int_or_none(dict_get(v, ('Count', 'StrCount')))
|
2019-02-07 17:43:10 +00:00
|
|
|
|
2018-10-10 21:47:21 +00:00
|
|
|
info = self._search_json_ld(webpage, video_id, default={})
|
|
|
|
|
2020-11-19 19:22:59 +00:00
|
|
|
return merge_dicts({
|
2019-02-07 17:43:10 +00:00
|
|
|
'id': video_id,
|
|
|
|
'display_id': display_id,
|
2020-11-19 19:22:59 +00:00
|
|
|
'title': video.get('Title'),
|
|
|
|
'description': clean_html(video.get('Description')),
|
|
|
|
'thumbnail': video.get('ThumbnailUrl'),
|
|
|
|
'formats': formats,
|
|
|
|
'subtitles': subtitles,
|
|
|
|
'duration': int_or_none(video.get('DurationSeconds')) or parse_duration(video.get('Duration')),
|
|
|
|
'view_count': get_count('View'),
|
|
|
|
'like_count': get_count('Like'),
|
|
|
|
'dislike_count': get_count('Dislike'),
|
|
|
|
'average_rating': float_or_none(try_get(video, lambda x: x['EntityRating']['AvarageRate'])),
|
|
|
|
'comment_count': get_count('Comment'),
|
|
|
|
}, info)
|