Merge pull request #12909 from remitamine/raw-sub
[youtube-dl] / youtube_dl / extractor / common.py
index 1804c4de0249e8f5d0401509577e6b839a8faea9..74d30ec50ac7f9d5db44d46bab1dd482fcc34f59 100644 (file)
@@ -2184,6 +2184,12 @@ class InfoExtractor(object):
                     f = parse_content_type(source_attributes.get('type'))
                     is_plain_url, formats = _media_formats(src, media_type, f)
                     if is_plain_url:
+                        # res attribute is not standard but seen several times
+                        # in the wild
+                        f.update({
+                            'height': int_or_none(source_attributes.get('res')),
+                            'format_id': source_attributes.get('label'),
+                        })
                         f.update(formats[0])
                         media_info['formats'].append(f)
                     else: