mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 01:48:01 +09:00
[youtube] Pass self._formats to _parse_dash_manifest
This commit is contained in:
parent
0803753fea
commit
5d2c0fd9ba
@ -1478,7 +1478,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
|||||||
errnote='Could not download DASH manifest',
|
errnote='Could not download DASH manifest',
|
||||||
fatal=dash_mpd_fatal)
|
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
|
# Do not overwrite DASH format found in some previous DASH manifest
|
||||||
if df['format_id'] not in dash_formats:
|
if df['format_id'] not in dash_formats:
|
||||||
dash_formats[df['format_id']] = df
|
dash_formats[df['format_id']] = df
|
||||||
|
Loading…
Reference in New Issue
Block a user