aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2019-03-05 00:37:39 +0700
committerSergey M․ <dstftw@gmail.com>2019-03-05 00:40:57 +0700
commit39c780fdec2c62135f37e3565efedf7dcad605ba (patch)
tree39b8f9bb75cb82bcd046bc5e787bbbec95eabbf1
parente7e62441cdde6dca6211c073be73677f195a0dff (diff)
downloadyoutube-dl-39c780fdec2c62135f37e3565efedf7dcad605ba.tar.xz
[extractor/common] Return MPD manifest as format's url meta field (#20242)
For symmetry with other segmented media
-rw-r--r--youtube_dl/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index c3b0586a0..1fa8048b8 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -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')),