[youtube] Pass self._formats to _parse_dash_manifest

This commit is contained in:
Yen Chi Hsuan 2016-01-30 21:32:15 +08:00
parent 0803753fea
commit 5d2c0fd9ba
1 changed files with 2 additions and 1 deletions

View File

@ -1478,7 +1478,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
errnote='Could not download DASH manifest',
fatal=dash_mpd_fatal)
for df in self._parse_dash_manifest(video_id, dash_doc, dash_mpd_fatal):
for df in self._parse_dash_manifest(
video_id, dash_doc, formats_dict=self._formats, fatal=dash_mpd_fatal):
# Do not overwrite DASH format found in some previous DASH manifest
if df['format_id'] not in dash_formats:
dash_formats[df['format_id']] = df