commit: 75111274edeec5f7088730b7f9c5c623dae77f28
parent 624dcebff617d3e995d1f0ddb27d604a881b2de2
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Thu, 11 Dec 2014 16:33:28 +0100
[youtube] Do not warn if DASH manifest is missing (#4442)
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
@@ -1010,9 +1010,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
# Look for the DASH manifest
if self._downloader.params.get('youtube_include_dash_manifest', True):
dash_mpd = video_info.get('dashmpd')
- if not dash_mpd:
- self.report_warning('%s: DASH manifest missing' % video_id)
- else:
+ if dash_mpd:
dash_manifest_url = dash_mpd[0]
try:
dash_formats = self._parse_dash_manifest(