58 lines
2.0 KiB
Python
58 lines
2.0 KiB
Python
|
# coding: utf-8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from .common import InfoExtractor
|
||
|
from ..compat import (
|
||
|
compat_urllib_parse_unquote,
|
||
|
compat_str
|
||
|
)
|
||
|
|
||
|
|
||
|
class MediaKlikkIE(InfoExtractor):
|
||
|
# (?P<name>...) used for referencing match as 'id'
|
||
|
_VALID_URL = r'https?://(?:www\.)?mediaklikk\.hu/video/(?P<id>:[^/]+)/?'
|
||
|
_TEST = {
|
||
|
'url': 'https://mediaklikk.hu/video/kiberma-2020-04-30-i-adas/',
|
||
|
'info_dict': {
|
||
|
'id': '2512015',
|
||
|
'ext': 'mp4',
|
||
|
'title': 'KiberMa, 2020.04.30-i adás | MédiaKlikk',
|
||
|
# no thumbnail extractable
|
||
|
}
|
||
|
}
|
||
|
|
||
|
def _real_extract(self, url):
|
||
|
video_id = self._match_id(url)
|
||
|
display_id = video_id
|
||
|
webpage = self._download_webpage(url, video_id)
|
||
|
|
||
|
pattern = r"mtva_player_manager\.player\(document.getElementById\(.*\),\s?(\{.*\}).*\);"
|
||
|
info_json = self._html_search_regex(pattern, webpage, 'info_json')
|
||
|
info_meta = self._parse_json(compat_urllib_parse_unquote(info_json),None)
|
||
|
|
||
|
info_ret = {
|
||
|
'_type': 'video',
|
||
|
'title': info_meta.get('title') or self._og_search_title(webpage),
|
||
|
'ext': 'mp4',
|
||
|
'display_id': display_id,
|
||
|
'id': video_id
|
||
|
}
|
||
|
|
||
|
if 'series' in info_meta:
|
||
|
info_ret['series'] = info_meta['series']
|
||
|
info_meta['video'] = info_meta['token']
|
||
|
del info_meta['token']
|
||
|
playerpage = self._download_webpage('https://player.mediaklikk.hu/playernew/player.php',
|
||
|
video_id,
|
||
|
query=info_meta)
|
||
|
pattern = r"\"file\": \"(\\/\\/.*playlist\.m3u8)\","
|
||
|
playlist_url = 'https:' + compat_urllib_parse_unquote(
|
||
|
self._html_search_regex(pattern, playerpage, 'playlist_url'))\
|
||
|
.replace('\\/', '/')
|
||
|
formats = self._extract_wowza_formats(
|
||
|
playlist_url, video_id, skip_protocols=['f4m', 'smil', 'dash'])
|
||
|
self._sort_formats(formats)
|
||
|
info_ret['formats'] = formats
|
||
|
|
||
|
return info_ret
|