]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/olympics.py
[dplay] Add extractors for site changes (#2401)
[yt-dlp.git] / yt_dlp / extractor / olympics.py
index 0aad836faf52d6f901f46280be792d372dfaeca0..784f282c7b10629621cab78db1232994c5488c13 100644 (file)
@@ -19,6 +19,7 @@ class OlympicsReplayIE(InfoExtractor):
             'upload_date': '20210801',
             'timestamp': 1627783200,
             'description': 'md5:c66af4a5bc7429dbcc43d15845ff03b3',
+            'uploader': 'International Olympic Committee',
         },
         'params': {
             'skip_download': True,
@@ -61,10 +62,8 @@ def _real_extract(self, url):
         return {
             'id': uuid,
             'title': title,
-            'timestamp': json_ld.get('timestamp'),
-            'description': json_ld.get('description'),
             'thumbnails': thumbnails,
-            'duration': json_ld.get('duration'),
             'formats': formats,
             'subtitles': subtitles,
+            **json_ld
         }