[common] Use codec2ext for DASH formats (#8764)
authorYen Chi Hsuan <yan12125@gmail.com>
Sat, 5 Mar 2016 10:18:39 +0000 (18:18 +0800)
committerYen Chi Hsuan <yan12125@gmail.com>
Sat, 5 Mar 2016 10:18:39 +0000 (18:18 +0800)
youtube_dl/extractor/common.py

index 07bd2cbe2f9f6c4213e31e4c6e90d2df7b611f58..f337caf20e8d2b24692ac2c01903df8d9580f49b 100644 (file)
@@ -29,6 +29,7 @@ from ..utils import (
     age_restricted,
     bug_reports_message,
     clean_html,
+    codec2ext,
     compiled_regex_type,
     determine_ext,
     error_to_compat_str,
@@ -1471,6 +1472,7 @@ class InfoExtractor(object):
                         f = {
                             'format_id': '%s-%s' % (mpd_id, representation_id) if mpd_id else representation_id,
                             'url': base_url,
+                            'ext': codec2ext(representation_attrib.get('codecs')),
                             'width': int_or_none(representation_attrib.get('width')),
                             'height': int_or_none(representation_attrib.get('height')),
                             'tbr': int_or_none(representation_attrib.get('bandwidth'), 1000),