Upgrade yt_dlp and download script
This commit is contained in:
@@ -3,6 +3,8 @@ from ..utils import int_or_none, join_nonempty
|
||||
|
||||
|
||||
class TOnlineIE(InfoExtractor):
|
||||
_WORKING = False
|
||||
_ENABLED = None # XXX: pass through to GenericIE
|
||||
IE_NAME = 't-online.de'
|
||||
_VALID_URL = r'https?://(?:www\.)?t-online\.de/tv/(?:[^/]+/)*id_(?P<id>\d+)'
|
||||
_TEST = {
|
||||
@@ -13,13 +15,13 @@ class TOnlineIE(InfoExtractor):
|
||||
'ext': 'mp4',
|
||||
'title': 'Drittes Remis! Zidane: "Es muss etwas passieren"',
|
||||
'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.',
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
def _real_extract(self, url):
|
||||
video_id = self._match_id(url)
|
||||
video_data = self._download_json(
|
||||
'http://www.t-online.de/tv/id_%s/tid_json_video' % video_id, video_id)
|
||||
f'http://www.t-online.de/tv/id_{video_id}/tid_json_video', video_id)
|
||||
title = video_data['subtitle']
|
||||
|
||||
formats = []
|
||||
|
Reference in New Issue
Block a user