1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-06-30 11:02:54 -05:00

[extractor/common] Return MPD manifest as format's url meta field (#20242)

For symmetry with other segmented media
This commit is contained in:
Sergey M․
2019-03-05 00:37:39 +07:00
parent e7e62441cd
commit 39c780fdec

View File

@ -2120,7 +2120,7 @@ class InfoExtractor(object):
bandwidth = int_or_none(representation_attrib.get('bandwidth'))
f = {
'format_id': '%s-%s' % (mpd_id, representation_id) if mpd_id else representation_id,
'url': base_url,
'url': mpd_url,
'manifest_url': mpd_url,
'ext': mimetype2ext(mime_type),
'width': int_or_none(representation_attrib.get('width')),