diff options
author | Sergey M․ <dstftw@gmail.com> | 2021-03-24 02:57:35 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2021-03-24 02:57:35 +0700 |
commit | 5208ae92fc3e2916cdccae45c6b9a516be3d5796 (patch) | |
tree | ed40fc6c83d5552f73f922da3478baa396efc79f | |
parent | 8117d613acdd0a2874e52bfa52c3574f46e3a4fb (diff) |
[youtube] Fix default value for youtube_include_dash_manifest (closes #28523)
-rw-r--r-- | youtube_dl/extractor/youtube.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index eb5a58807..badca3977 100644 --- 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( |