mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-05 18:31:02 +01:00
[youtube] improve DASH formats file size extraction
This commit is contained in:
parent
7b8fa658f8
commit
0b4f03a563
@ -2370,7 +2370,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
||||
mpd_url, video_id, fatal=dash_mpd_fatal,
|
||||
formats_dict=self._formats):
|
||||
if not df.get('filesize'):
|
||||
df['filesize'] = _extract_filesize(df['url'])
|
||||
df['filesize'] = _extract_filesize(df.get('fragment_base_url') or df['url'])
|
||||
# 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
|
||||
|
Loading…
Reference in New Issue
Block a user