diff options
| -rw-r--r-- | youtube_dl/extractor/common.py | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index b4af3f987..74d30ec50 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -2186,7 +2186,10 @@ class InfoExtractor(object):                      if is_plain_url:                          # res attribute is not standard but seen several times                          # in the wild -                        f['height'] = int_or_none(source_attributes.get('res')) +                        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:  | 
