logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 5208ae92fc3e2916cdccae45c6b9a516be3d5796
parent 8117d613acdd0a2874e52bfa52c3574f46e3a4fb
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 24 Mar 2021 02:57:35 +0700

[youtube] Fix default value for youtube_include_dash_manifest (closes #28523)

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 @@ -1617,7 +1617,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor): f['format_id'] = itag formats.append(f) - if self._downloader.params.get('youtube_include_dash_manifest'): + if self._downloader.params.get('youtube_include_dash_manifest', True): dash_manifest_url = streaming_data.get('dashManifestUrl') if dash_manifest_url: for f in self._extract_mpd_formats(