aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/youtube.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-10-13 00:03:08 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-10-13 00:03:08 +0200
commit203fb43f3602a6363041ee9323ee718e6c71606c (patch)
tree4b58ca44547c4c1edb411dc9403e33b4c45752c3 /youtube_dl/extractor/youtube.py
parent4d7b03f1f28760abee5a1326f1c902b081c75976 (diff)
downloadyoutube-dl-203fb43f3602a6363041ee9323ee718e6c71606c.tar.xz
[youtube] Download DASH manifest by default (Closes #3887)
Diffstat (limited to 'youtube_dl/extractor/youtube.py')
-rw-r--r--youtube_dl/extractor/youtube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 9041cfa87..98d7fb5fc 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -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.