summary refs log tree commit diff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-06-23 19:03:34 +0100
committerRemita Amine <remitamine@gmail.com>2016-06-23 19:03:34 +0100
commitfee70322d76f416c3d68f58abdc73f9d3960083e (patch)
tree897ace42cacba1f4ede9c465fcd4a5b7646477b0
parent8065d6c55f02c6f618e8495049f253d311cf347f (diff)
downloadyoutube-dl-fee70322d76f416c3d68f58abdc73f9d3960083e.tar.gz
youtube-dl-fee70322d76f416c3d68f58abdc73f9d3960083e.tar.xz
youtube-dl-fee70322d76f416c3d68f58abdc73f9d3960083e.zip
[appletrailers] correct thumbnail fallback
-rw-r--r--youtube_dl/extractor/appletrailers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/appletrailers.py b/youtube_dl/extractor/appletrailers.py
index babbd0265..a6801f3d4 100644
--- a/youtube_dl/extractor/appletrailers.py
+++ b/youtube_dl/extractor/appletrailers.py
@@ -127,7 +127,7 @@ class AppleTrailersIE(InfoExtractor):
                     'id': movie + '-' + re.sub(r'[^a-zA-Z0-9]', '', clip_title).lower(),
                     'formats': formats,
                     'title': clip_title,
-                    'thumbnail': clip.get('screen') or clip.get('runtime'),
+                    'thumbnail': clip.get('screen') or clip.get('thumb'),
                     'duration': parse_duration(clip.get('runtime') or clip.get('faded')),
                     'upload_date': unified_strdate(clip.get('posted')),
                     'uploader_id': uploader_id,