]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/olympics.py
[test/download] Fallback test to `bv`
[yt-dlp.git] / yt_dlp / extractor / olympics.py
CommitLineData
71407b3e
A
1# coding: utf-8
2from __future__ import unicode_literals
3
4from .common import InfoExtractor
b2f25dc2 5from ..utils import (
6 int_or_none,
7 try_get
8)
71407b3e
A
9
10
11class OlympicsReplayIE(InfoExtractor):
b2f25dc2 12 _VALID_URL = r'https?://(?:www\.)?olympics\.com(?:/tokyo-2020)?/[a-z]{2}/(?:replay|video)/(?P<id>[^/#&?]+)'
71407b3e 13 _TESTS = [{
b2f25dc2 14 'url': 'https://olympics.com/fr/video/men-s-109kg-group-a-weightlifting-tokyo-2020-replays',
71407b3e 15 'info_dict': {
b2f25dc2 16 'id': 'f6a0753c-8e6f-4b7d-a435-027054a4f8e9',
71407b3e 17 'ext': 'mp4',
b2f25dc2 18 'title': '+109kg (H) Groupe A - Haltérophilie | Replay de Tokyo 2020',
19 'upload_date': '20210801',
20 'timestamp': 1627783200,
21 'description': 'md5:c66af4a5bc7429dbcc43d15845ff03b3',
71407b3e
A
22 },
23 'params': {
b2f25dc2 24 'skip_download': True,
71407b3e
A
25 },
26 }, {
27 'url': 'https://olympics.com/tokyo-2020/en/replay/bd242924-4b22-49a5-a846-f1d4c809250d/mens-bronze-medal-match-hun-esp',
28 'only_matching': True,
29 }]
30
31 def _real_extract(self, url):
32 id = self._match_id(url)
b2f25dc2 33
34 webpage = self._download_webpage(url, id)
35 title = self._html_search_meta(('title', 'og:title', 'twitter:title'), webpage)
36 uuid = self._html_search_meta('episode_uid', webpage)
37 m3u8_url = self._html_search_meta('video_url', webpage)
38 json_ld = self._search_json_ld(webpage, uuid)
39 thumbnails_list = json_ld.get('image')
40 if not thumbnails_list:
41 thumbnails_list = self._html_search_regex(
42 r'["\']image["\']:\s*["\']([^"\']+)["\']', webpage, 'images', default='')
43 thumbnails_list = thumbnails_list.replace('[', '').replace(']', '').split(',')
44 thumbnails_list = [thumbnail.strip() for thumbnail in thumbnails_list]
45 thumbnails = []
46 for thumbnail in thumbnails_list:
47 width_a, height_a, width = self._search_regex(
48 r'/images/image/private/t_(?P<width_a>\d+)-(?P<height_a>\d+)_(?P<width>\d+)/primary/[\W\w\d]+',
49 thumbnail, 'thumb', group=(1, 2, 3), default=(None, None, None))
50 width_a, height_a, width = int_or_none(width_a), int_or_none(height_a), int_or_none(width)
51 thumbnails.append({
52 'url': thumbnail,
53 'width': width,
54 'height': int_or_none(try_get(width, lambda x: x * height_a / width_a))
55 })
71407b3e 56 m3u8_url = self._download_json(
b2f25dc2 57 f'https://olympics.com/tokenGenerator?url={m3u8_url}', uuid, note='Downloading m3u8 url')
58 formats, subtitles = self._extract_m3u8_formats_and_subtitles(m3u8_url, uuid, m3u8_id='hls')
71407b3e
A
59 self._sort_formats(formats)
60
61 return {
b2f25dc2 62 'id': uuid,
63 'title': title,
64 'timestamp': json_ld.get('timestamp'),
65 'description': json_ld.get('description'),
66 'thumbnails': thumbnails,
67 'duration': json_ld.get('duration'),
71407b3e
A
68 'formats': formats,
69 'subtitles': subtitles,
70 }