[franceinter] add thumbnail url (#27153)
authorrenalid <renalid@gmail.com>
Sun, 22 Nov 2020 18:35:53 +0000 (19:35 +0100)
committerGitHub <noreply@github.com>
Sun, 22 Nov 2020 18:35:53 +0000 (19:35 +0100)
Co-authored-by: remitamine <remitamine@gmail.com>
youtube_dl/extractor/franceinter.py

index 05806895c0a3300dd9db8e68efb15fcb70bb8006..a009f4d384e8f8221525cefbc3fea36d9da3ee04 100644 (file)
@@ -16,6 +16,7 @@ class FranceInterIE(InfoExtractor):
             'ext': 'mp3',
             'title': 'Affaire Cahuzac : le contentieux du compte en Suisse',
             'description': 'md5:401969c5d318c061f86bda1fa359292b',
+            'thumbnail': r're:^https?://.*\.jpg',
             'upload_date': '20160907',
         },
     }
@@ -31,6 +32,7 @@ class FranceInterIE(InfoExtractor):
 
         title = self._og_search_title(webpage)
         description = self._og_search_description(webpage)
+        thumbnail = self._html_search_meta(['og:image', 'twitter:image'], webpage)
 
         upload_date_str = self._search_regex(
             r'class=["\']\s*cover-emission-period\s*["\'][^>]*>[^<]+\s+(\d{1,2}\s+[^\s]+\s+\d{4})<',
@@ -48,6 +50,7 @@ class FranceInterIE(InfoExtractor):
             'id': video_id,
             'title': title,
             'description': description,
+            'thumbnail' : thumbnail,
             'upload_date': upload_date,
             'formats': [{
                 'url': video_url,