[youtube] Download DASH manifest by default (Closes #3887)
[youtube-dl] / youtube_dl / extractor / youtube.py
index 9041cfa8770897851d06026942517a103df2a639..98d7fb5fceb103b76a7a61c9896c48fbebec290b 100644 (file)
@@ -938,7 +938,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
             raise ExtractorError('no conn, hlsvp or url_encoded_fmt_stream_map information found in video info')
 
         # Look for the DASH manifest
-        if (self._downloader.params.get('youtube_include_dash_manifest', False)):
+        if self._downloader.params.get('youtube_include_dash_manifest', True):
             try:
                 # The DASH manifest used needs to be the one from the original video_webpage.
                 # The one found in get_video_info seems to be using different signatures.