2020-11-26 17:27:34 +00:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..compat import compat_str
|
|
|
|
from ..utils import (
|
|
|
|
ExtractorError,
|
2022-01-21 07:57:40 +00:00
|
|
|
format_field,
|
2020-11-26 17:27:34 +00:00
|
|
|
float_or_none,
|
|
|
|
int_or_none,
|
|
|
|
str_or_none,
|
2023-03-12 17:38:27 +00:00
|
|
|
traverse_obj
|
2020-11-26 17:27:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class MedalTVIE(InfoExtractor):
|
2023-03-12 17:38:27 +00:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?medal\.tv/games/[^/?#&]+/clips/(?P<id>[^/?#&]+)'
|
2020-11-26 17:27:34 +00:00
|
|
|
_TESTS = [{
|
2022-08-22 20:04:12 +00:00
|
|
|
'url': 'https://medal.tv/games/valorant/clips/jTBFnLKdLy15K',
|
|
|
|
'md5': '6930f8972914b6b9fdc2bb3918098ba0',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'jTBFnLKdLy15K',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': "Mornu's clutch",
|
|
|
|
'description': '',
|
|
|
|
'uploader': 'Aciel',
|
|
|
|
'timestamp': 1651628243,
|
|
|
|
'upload_date': '20220504',
|
|
|
|
'uploader_id': '19335460',
|
|
|
|
'uploader_url': 'https://medal.tv/users/19335460',
|
|
|
|
'comment_count': int,
|
|
|
|
'view_count': int,
|
|
|
|
'like_count': int,
|
|
|
|
'duration': 13,
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
'url': 'https://medal.tv/games/cod%20cold%20war/clips/2mA60jWAGQCBH',
|
|
|
|
'md5': '3d19d426fe0b2d91c26e412684e66a06',
|
2020-11-26 17:27:34 +00:00
|
|
|
'info_dict': {
|
2021-05-06 16:01:20 +00:00
|
|
|
'id': '2mA60jWAGQCBH',
|
2020-11-26 17:27:34 +00:00
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Quad Cold',
|
|
|
|
'description': 'Medal,https://medal.tv/desktop/',
|
|
|
|
'uploader': 'MowgliSB',
|
|
|
|
'timestamp': 1603165266,
|
|
|
|
'upload_date': '20201020',
|
2021-05-06 16:01:20 +00:00
|
|
|
'uploader_id': '10619174',
|
2022-08-22 20:04:12 +00:00
|
|
|
'thumbnail': 'https://cdn.medal.tv/10619174/thumbnail-34934644-720p.jpg?t=1080p&c=202042&missing',
|
|
|
|
'uploader_url': 'https://medal.tv/users/10619174',
|
|
|
|
'comment_count': int,
|
|
|
|
'view_count': int,
|
|
|
|
'like_count': int,
|
|
|
|
'duration': 23,
|
2020-11-26 17:27:34 +00:00
|
|
|
}
|
|
|
|
}, {
|
2022-08-22 20:04:12 +00:00
|
|
|
'url': 'https://medal.tv/games/cod%20cold%20war/clips/2um24TWdty0NA',
|
2020-11-26 17:27:34 +00:00
|
|
|
'md5': 'b6dc76b78195fff0b4f8bf4a33ec2148',
|
|
|
|
'info_dict': {
|
2021-05-06 16:01:20 +00:00
|
|
|
'id': '2um24TWdty0NA',
|
2020-11-26 17:27:34 +00:00
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'u tk me i tk u bigger',
|
|
|
|
'description': 'Medal,https://medal.tv/desktop/',
|
|
|
|
'uploader': 'Mimicc',
|
|
|
|
'timestamp': 1605580939,
|
|
|
|
'upload_date': '20201117',
|
2021-05-06 16:01:20 +00:00
|
|
|
'uploader_id': '5156321',
|
2022-08-22 20:04:12 +00:00
|
|
|
'thumbnail': 'https://cdn.medal.tv/5156321/thumbnail-36787208-360p.jpg?t=1080p&c=202046&missing',
|
|
|
|
'uploader_url': 'https://medal.tv/users/5156321',
|
|
|
|
'comment_count': int,
|
|
|
|
'view_count': int,
|
|
|
|
'like_count': int,
|
|
|
|
'duration': 9,
|
2020-11-26 17:27:34 +00:00
|
|
|
}
|
2021-05-06 16:01:20 +00:00
|
|
|
}, {
|
2022-08-22 20:04:12 +00:00
|
|
|
'url': 'https://medal.tv/games/valorant/clips/37rMeFpryCC-9',
|
2021-05-06 16:01:20 +00:00
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
2022-08-22 20:04:12 +00:00
|
|
|
'url': 'https://medal.tv/games/valorant/clips/2WRj40tpY_EU9',
|
2021-05-06 16:01:20 +00:00
|
|
|
'only_matching': True,
|
2020-11-26 17:27:34 +00:00
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
video_id = self._match_id(url)
|
2022-08-22 20:04:12 +00:00
|
|
|
|
2020-11-26 17:27:34 +00:00
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
|
2023-03-12 17:38:27 +00:00
|
|
|
hydration_data = self._search_json(
|
|
|
|
r'<script[^>]*>[^<]*\bhydrationData\s*=', webpage,
|
2022-08-22 20:04:12 +00:00
|
|
|
'next data', video_id, end_pattern='</script>', fatal=False)
|
|
|
|
|
2023-03-12 17:38:27 +00:00
|
|
|
clip = traverse_obj(hydration_data, ('clips', ...), get_all=False)
|
2020-11-26 17:27:34 +00:00
|
|
|
if not clip:
|
|
|
|
raise ExtractorError(
|
|
|
|
'Could not find video information.', video_id=video_id)
|
|
|
|
|
|
|
|
title = clip['contentTitle']
|
|
|
|
|
|
|
|
source_width = int_or_none(clip.get('sourceWidth'))
|
|
|
|
source_height = int_or_none(clip.get('sourceHeight'))
|
|
|
|
|
|
|
|
aspect_ratio = source_width / source_height if source_width and source_height else 16 / 9
|
|
|
|
|
|
|
|
def add_item(container, item_url, height, id_key='format_id', item_id=None):
|
|
|
|
item_id = item_id or '%dp' % height
|
|
|
|
if item_id not in item_url:
|
|
|
|
return
|
|
|
|
width = int(round(aspect_ratio * height))
|
|
|
|
container.append({
|
|
|
|
'url': item_url,
|
|
|
|
id_key: item_id,
|
|
|
|
'width': width,
|
|
|
|
'height': height
|
|
|
|
})
|
|
|
|
|
|
|
|
formats = []
|
|
|
|
thumbnails = []
|
|
|
|
for k, v in clip.items():
|
|
|
|
if not (v and isinstance(v, compat_str)):
|
|
|
|
continue
|
|
|
|
mobj = re.match(r'(contentUrl|thumbnail)(?:(\d+)p)?$', k)
|
|
|
|
if not mobj:
|
|
|
|
continue
|
|
|
|
prefix = mobj.group(1)
|
|
|
|
height = int_or_none(mobj.group(2))
|
|
|
|
if prefix == 'contentUrl':
|
|
|
|
add_item(
|
|
|
|
formats, v, height or source_height,
|
|
|
|
item_id=None if height else 'source')
|
|
|
|
elif prefix == 'thumbnail':
|
|
|
|
add_item(thumbnails, v, height, 'id')
|
|
|
|
|
|
|
|
error = clip.get('error')
|
|
|
|
if not formats and error:
|
|
|
|
if error == 404:
|
2021-04-17 00:09:58 +00:00
|
|
|
self.raise_no_formats(
|
2020-11-26 17:27:34 +00:00
|
|
|
'That clip does not exist.',
|
|
|
|
expected=True, video_id=video_id)
|
|
|
|
else:
|
2021-04-17 00:09:58 +00:00
|
|
|
self.raise_no_formats(
|
2020-11-26 17:27:34 +00:00
|
|
|
'An unknown error occurred ({0}).'.format(error),
|
|
|
|
video_id=video_id)
|
|
|
|
|
|
|
|
# Necessary because the id of the author is not known in advance.
|
|
|
|
# Won't raise an issue if no profile can be found as this is optional.
|
2023-03-12 17:38:27 +00:00
|
|
|
author = traverse_obj(hydration_data, ('profiles', ...), get_all=False) or {}
|
2022-08-22 20:04:12 +00:00
|
|
|
author_id = str_or_none(author.get('userId'))
|
2022-06-18 02:00:12 +00:00
|
|
|
author_url = format_field(author_id, None, 'https://medal.tv/users/%s')
|
2020-11-26 17:27:34 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
|
|
|
'formats': formats,
|
|
|
|
'thumbnails': thumbnails,
|
|
|
|
'description': clip.get('contentDescription'),
|
|
|
|
'uploader': author.get('displayName'),
|
|
|
|
'timestamp': float_or_none(clip.get('created'), 1000),
|
|
|
|
'uploader_id': author_id,
|
|
|
|
'uploader_url': author_url,
|
|
|
|
'duration': int_or_none(clip.get('videoLengthSeconds')),
|
|
|
|
'view_count': int_or_none(clip.get('views')),
|
|
|
|
'like_count': int_or_none(clip.get('likes')),
|
|
|
|
'comment_count': int_or_none(clip.get('comments')),
|
|
|
|
}
|