mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-10 19:37:25 +00:00
[appletrailers] correct thumbnail fallback
This commit is contained in:
parent
8065d6c55f
commit
fee70322d7
@ -127,7 +127,7 @@ class AppleTrailersIE(InfoExtractor):
|
|||||||
'id': movie + '-' + re.sub(r'[^a-zA-Z0-9]', '', clip_title).lower(),
|
'id': movie + '-' + re.sub(r'[^a-zA-Z0-9]', '', clip_title).lower(),
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
'title': clip_title,
|
'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')),
|
'duration': parse_duration(clip.get('runtime') or clip.get('faded')),
|
||||||
'upload_date': unified_strdate(clip.get('posted')),
|
'upload_date': unified_strdate(clip.get('posted')),
|
||||||
'uploader_id': uploader_id,
|
'uploader_id': uploader_id,
|
||||||
|
Loading…
Reference in New Issue
Block a user