From 28051dd8edc8391c55bc452d9bda626ea462bc8c Mon Sep 17 00:00:00 2001 From: Sergey M Date: Sun, 17 Mar 2019 09:12:06 +0700 Subject: [PATCH] Update common.py --- youtube_dl/extractor/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)