diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 01dc22b4c..dfd0584d3 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -2483,7 +2483,7 @@ class InfoExtractor(object): # in the wild f.update({ 'height': int_or_none(source_attributes.get('res')), - 'format_id': source_attributes.get('label') or source_attributes.get('title'), + 'format_id': source_attributes.get('label'), }) f.update(formats[0]) media_info['formats'].append(f)