youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit fee70322d76f416c3d68f58abdc73f9d3960083e
parent 8065d6c55f02c6f618e8495049f253d311cf347f
Author: Remita Amine <remitamine@gmail.com>
Date:   Thu, 23 Jun 2016 19:03:34 +0100

[appletrailers] correct thumbnail fallback

Diffstat:
Myoutube_dl/extractor/appletrailers.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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,