logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 82f68e4a0113f00144b55c5d2a1951793ac78818
parent d4ece5d359bfe5c6b87e0ef19f2b351e408e510c
Author: Remita Amine <remitamine@gmail.com>
Date:   Fri, 12 Jul 2019 22:02:06 +0100

[facebook] fallback to twitter:image meta for thumbnail extraction(closes #21224)

Diffstat:

Myoutube_dl/extractor/facebook.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py @@ -428,7 +428,7 @@ class FacebookIE(InfoExtractor): timestamp = int_or_none(self._search_regex( r'<abbr[^>]+data-utime=["\'](\d+)', webpage, 'timestamp', default=None)) - thumbnail = self._og_search_thumbnail(webpage) + thumbnail = self._html_search_meta(['og:image', 'twitter:image'], webpage) view_count = parse_count(self._search_regex( r'\bviewCount\s*:\s*["\']([\d,.]+)', webpage, 'view count',