[youtube] Do not warn if DASH manifest is missing (#4442)
This commit is contained in:
parent
624dcebff6
commit
75111274ed
|
@ -1010,9 +1010,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
|
||||||
# Look for the DASH manifest
|
# Look for the DASH manifest
|
||||||
if self._downloader.params.get('youtube_include_dash_manifest', True):
|
if self._downloader.params.get('youtube_include_dash_manifest', True):
|
||||||
dash_mpd = video_info.get('dashmpd')
|
dash_mpd = video_info.get('dashmpd')
|
||||||
if not dash_mpd:
|
if dash_mpd:
|
||||||
self.report_warning('%s: DASH manifest missing' % video_id)
|
|
||||||
else:
|
|
||||||
dash_manifest_url = dash_mpd[0]
|
dash_manifest_url = dash_mpd[0]
|
||||||
try:
|
try:
|
||||||
dash_formats = self._parse_dash_manifest(
|
dash_formats = self._parse_dash_manifest(
|
||||||
|
|
Loading…
Reference in New Issue