From 89ad100660b7789e0dd7c66218664a563ec1dd68 Mon Sep 17 00:00:00 2001 From: MikeCol Date: Wed, 29 Jan 2014 00:12:54 +0100 Subject: [PATCH] URLs of multiple thumbnails must be encoded as a list of dicts --- youtube_dl/extractor/tumblr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/tumblr.py b/youtube_dl/extractor/tumblr.py index 7d0d419e9..10f26d631 100644 --- a/youtube_dl/extractor/tumblr.py +++ b/youtube_dl/extractor/tumblr.py @@ -41,7 +41,7 @@ class TumblrIE(InfoExtractor): for t in ma.group('thumb').replace(r'\\/', '/').split(','): t = t.replace(r'\x22','"') if (t[0] == '"') and (t[-1] == '"'): - thumb_list.append(t[1:-1]) + thumb_list.append( {"url": t[1:-1]} ) # The only place where you can get a title, it's not complete, # but searching in other places doesn't work for all videos