diff options
author | renalid <renalid@gmail.com> | 2020-11-14 22:49:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-14 22:49:36 +0100 |
commit | 711bd5d362a1a7bec312e23a0f39deff2b3bf8f1 (patch) | |
tree | fdfb846277e4c13bafa248260ce7f6cac1f9ecc0 | |
parent | d052b9a112fb7ae749a829dceba6e3289663a303 (diff) | |
download | hypervideo-pre-711bd5d362a1a7bec312e23a0f39deff2b3bf8f1.tar.lz hypervideo-pre-711bd5d362a1a7bec312e23a0f39deff2b3bf8f1.tar.xz hypervideo-pre-711bd5d362a1a7bec312e23a0f39deff2b3bf8f1.zip |
Update on france.tv extractor to fix thumbnail URL
Fix the thumbnail URL extraction
-rw-r--r-- | youtube_dlc/extractor/francetv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/francetv.py b/youtube_dlc/extractor/francetv.py index e340cddba..910a8a329 100644 --- a/youtube_dlc/extractor/francetv.py +++ b/youtube_dlc/extractor/francetv.py @@ -186,7 +186,7 @@ class FranceTVIE(InfoExtractor): 'id': video_id, 'title': self._live_title(title) if is_live else title, 'description': clean_html(info['synopsis']), - 'thumbnail': compat_urlparse.urljoin('http://pluzz.francetv.fr', info['image']), + 'thumbnail': compat_urlparse.urljoin('https://sivideo.webservices.francetelevisions.fr', info['image']), 'duration': int_or_none(info.get('real_duration')) or parse_duration(info['duree']), 'timestamp': int_or_none(info['diffusion']['timestamp']), 'is_live': is_live, |