aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOndřej Caletka <ondrej@caletka.cz>2017-12-30 22:02:46 +0100
committerSergey M․ <dstftw@gmail.com>2017-12-31 04:04:09 +0700
commit126f225bcffbdc55725fe2272daf22489abacf54 (patch)
tree2fd9a4d0ab0331277cc74d70d1375f8827601071
parent4f5cf319772b693c7781de47dbc5451c3c18a81c (diff)
downloadyoutube-dl-126f225bcffbdc55725fe2272daf22489abacf54.zip
youtube-dl-126f225bcffbdc55725fe2272daf22489abacf54.tar.gz
youtube-dl-126f225bcffbdc55725fe2272daf22489abacf54.tar.bz2
[extractor/common] Add container meta field for formats extracted in _parse_mpd_formats
-rw-r--r--youtube_dl/extractor/common.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 5e7e7a3..5b6a09c 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -1880,6 +1880,7 @@ class InfoExtractor(object):
'language': lang if lang not in ('mul', 'und', 'zxx', 'mis') else None,
'format_note': 'DASH %s' % content_type,
'filesize': filesize,
+ 'container': mimetype2ext(mime_type) + '_dash',
}
f.update(parse_codecs(representation_attrib.get('codecs')))
representation_ms_info = extract_multisegment_info(representation, adaption_set_ms_info)