Skip to content

Commit

Permalink
[youtube] Fix empty description extraction (ytdl-org#26575) (closes y…
Browse files Browse the repository at this point in the history
  • Loading branch information
dpeukert authored Sep 13, 2020
1 parent 06cd4cd commit ea74e00
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions youtube_dl/extractor/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,23 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
'params': {
'skip_download': True,
},
}
},
{
# empty description results in an empty string
'url': 'https://www.youtube.com/watch?v=x41yOUIvK2k',
'info_dict': {
'id': 'x41yOUIvK2k',
'ext': 'mp4',
'title': 'IMG 3456',
'description': '',
'upload_date': '20170613',
'uploader_id': 'ElevageOrVert',
'uploader': 'ElevageOrVert',
},
'params': {
'skip_download': True,
},
},
]

def __init__(self, *args, **kwargs):
Expand Down Expand Up @@ -1931,7 +1947,9 @@ def replace_url(m):
''', replace_url, video_description)
video_description = clean_html(video_description)
else:
video_description = video_details.get('shortDescription') or self._html_search_meta('description', video_webpage)
video_description = video_details.get('shortDescription')
if video_description is None:
video_description = self._html_search_meta('description', video_webpage)

if not smuggled_data.get('force_singlefeed', False):
if not self._downloader.params.get('noplaylist'):
Expand Down

0 comments on commit ea74e00

Please sign in to comment.