]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/tonline.py
[networking] Rewrite architecture (#2861)
[yt-dlp.git] / yt_dlp / extractor / tonline.py
1 from .common import InfoExtractor
2 from ..utils import int_or_none, join_nonempty
3
4
5 class TOnlineIE(InfoExtractor):
6 IE_NAME = 't-online.de'
7 _VALID_URL = r'https?://(?:www\.)?t-online\.de/tv/(?:[^/]+/)*id_(?P<id>\d+)'
8 _TEST = {
9 'url': 'http://www.t-online.de/tv/sport/fussball/id_79166266/drittes-remis-zidane-es-muss-etwas-passieren-.html',
10 'md5': '7d94dbdde5f9d77c5accc73c39632c29',
11 'info_dict': {
12 'id': '79166266',
13 'ext': 'mp4',
14 'title': 'Drittes Remis! Zidane: "Es muss etwas passieren"',
15 'description': 'Es läuft nicht rund bei Real Madrid. Das 1:1 gegen den SD Eibar war das dritte Unentschieden in Folge in der Liga.',
16 }
17 }
18
19 def _real_extract(self, url):
20 video_id = self._match_id(url)
21 video_data = self._download_json(
22 'http://www.t-online.de/tv/id_%s/tid_json_video' % video_id, video_id)
23 title = video_data['subtitle']
24
25 formats = []
26 for asset in video_data.get('assets', []):
27 asset_source = asset.get('source') or asset.get('source2')
28 if not asset_source:
29 continue
30 formats.append({
31 'format_id': join_nonempty('type', 'profile', from_dict=asset),
32 'url': asset_source,
33 })
34
35 thumbnails = []
36 for image in video_data.get('images', []):
37 image_source = image.get('source')
38 if not image_source:
39 continue
40 thumbnails.append({
41 'url': image_source,
42 })
43
44 return {
45 'id': video_id,
46 'title': title,
47 'description': video_data.get('description'),
48 'duration': int_or_none(video_data.get('duration')),
49 'thumbnails': thumbnails,
50 'formats': formats,
51 }