mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-10 01:20:44 +00:00
[vine] Relax alt_title
(Closes #5677)
This commit is contained in:
parent
6d3f5935e5
commit
d4b963d0a6
|
@ -75,7 +75,7 @@ class VineIE(InfoExtractor):
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': self._og_search_title(webpage),
|
'title': self._og_search_title(webpage),
|
||||||
'alt_title': self._og_search_description(webpage),
|
'alt_title': self._og_search_description(webpage, default=None),
|
||||||
'description': data['description'],
|
'description': data['description'],
|
||||||
'thumbnail': data['thumbnailUrl'],
|
'thumbnail': data['thumbnailUrl'],
|
||||||
'upload_date': unified_strdate(data['created']),
|
'upload_date': unified_strdate(data['created']),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user