diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-04-28 03:00:14 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-04-28 03:00:14 +0700 |
commit | c89b49f7432ebaed7c5032194df9240f5da4a84f (patch) | |
tree | c1fd569194636d254f825cabd46575eaf9d02128 /youtube_dl | |
parent | 6f4a8884164d7df2cae638d36b2e3dc400c81ba8 (diff) |
[extractor/common] Add manifest_url for explicit group rendition formats
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/common.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 6d01f0800..2cb55d6af 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -1386,6 +1386,7 @@ class InfoExtractor(object): f = { 'format_id': '-'.join(format_id), 'url': format_url(media_url), + 'manifest_url': m3u8_url, 'language': media.get('LANGUAGE'), 'ext': ext, 'protocol': entry_protocol, |