]> jfr.im git - yt-dlp.git/commitdiff
[Arte] Improve description extraction (#1046)
authorrenalid <redacted>
Fri, 24 Sep 2021 00:56:15 +0000 (02:56 +0200)
committerGitHub <redacted>
Fri, 24 Sep 2021 00:56:15 +0000 (06:26 +0530)
Authored by: renalid

yt_dlp/extractor/arte.py

index ed245b75fd020cb6e5a44aa355356cb891c02767..296b169d2a844dd87b0f274464d0dd14cb6ebc4d 100644 (file)
@@ -174,7 +174,7 @@ def _real_extract(self, url):
         return {
             'id': player_info.get('VID') or video_id,
             'title': title,
-            'description': player_info.get('VDE'),
+            'description': player_info.get('VDE') or player_info.get('V7T'),
             'upload_date': unified_strdate(upload_date_str),
             'thumbnail': player_info.get('programImage') or player_info.get('VTU', {}).get('IUR'),
             'formats': formats,