summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-03-19 23:43:53 +0700
committerSergey M․ <dstftw@gmail.com>2018-03-19 23:43:53 +0700
commit6780154e6bcdabdb35a24d2b1c5049c94fbe27a1 (patch)
tree932d1348730e10f4f2cfd17c011416bf61d3da62
parent38f59e2793dfcb5f493977857304ab50b784e6ee (diff)
downloadyoutube-dl-6780154e6bcdabdb35a24d2b1c5049c94fbe27a1.tar.gz
youtube-dl-6780154e6bcdabdb35a24d2b1c5049c94fbe27a1.tar.xz
youtube-dl-6780154e6bcdabdb35a24d2b1c5049c94fbe27a1.zip
[extractor/common] Improve thumbnail extraction for HTML5 entries
-rw-r--r--youtube_dl/extractor/common.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 2e2a02948..890232586 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -2150,8 +2150,8 @@ class InfoExtractor(object):
         return formats
 
     def _parse_html5_media_entries(self, base_url, webpage, video_id, m3u8_id=None, m3u8_entry_protocol='m3u8', mpd_id=None, preference=None):
-        def absolute_url(video_url):
-            return compat_urlparse.urljoin(base_url, video_url)
+        def absolute_url(item_url):
+            return urljoin(base_url, item_url)
 
         def parse_content_type(content_type):
             if not content_type:
@@ -2208,7 +2208,7 @@ class InfoExtractor(object):
             if src:
                 _, formats = _media_formats(src, media_type)
                 media_info['formats'].extend(formats)
-            media_info['thumbnail'] = media_attributes.get('poster')
+            media_info['thumbnail'] = absolute_url(media_attributes.get('poster'))
             if media_content:
                 for source_tag in re.findall(r'<source[^>]+>', media_content):
                     source_attributes = extract_attributes(source_tag)