Browse Source

[common] Use codec2ext for DASH formats (#8764)

totalwebcasting
Yen Chi Hsuan 9 years ago
parent
commit
2def60c5f3
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      youtube_dl/extractor/common.py

+ 2
- 0
youtube_dl/extractor/common.py View File

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


Loading…
Cancel
Save