logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: a115e07594ccb7749ca108c889978510c7df126e
parent 718393c632df5106df92c60c650f52d86a9a3510
Author: MRWITEK <mrvvitek@gmail.com>
Date:   Tue, 14 Jul 2020 14:01:15 +0300

[youtube] Improve description extraction (closes #25937) (#25980)


Diffstat:

Myoutube_dl/extractor/youtube.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -1930,7 +1930,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor): ''', replace_url, video_description) video_description = clean_html(video_description) else: - video_description = self._html_search_meta('description', video_webpage) or video_details.get('shortDescription') + video_description = video_details.get('shortDescription') or self._html_search_meta('description', video_webpage) if not smuggled_data.get('force_singlefeed', False): if not self._downloader.params.get('noplaylist'):