Skip to content

Commit

Permalink
[youtube] Fix default value for youtube_include_dash_manifest (closes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed Mar 23, 2021
1 parent 8117d61 commit 5208ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -1617,7 +1617,7 @@ def feed_entry(name):
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(
Expand Down

0 comments on commit 5208ae9

Please sign in to comment.