summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-03-06 10:49:42 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-03-06 10:49:42 +0100
commita0bb7c5593b08339f34dc43d9bc1b199ddc3ff7d (patch)
tree6a84607b3733185ced43843240de62ba5cc48a9d
parent7feddd9fc7a4a482edbc9a07d6295d418989bd67 (diff)
downloadyoutube-dl-a0bb7c5593b08339f34dc43d9bc1b199ddc3ff7d.tar.gz
youtube-dl-a0bb7c5593b08339f34dc43d9bc1b199ddc3ff7d.tar.xz
youtube-dl-a0bb7c5593b08339f34dc43d9bc1b199ddc3ff7d.zip
[extractor/common] Improve m3u format IDs (#5143)
-rw-r--r--youtube_dl/extractor/common.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index cf39c0c21..8ff76342f 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -883,8 +883,12 @@ class InfoExtractor(object):
                     formats.append({'url': format_url(line)})
                     continue
                 tbr = int_or_none(last_info.get('BANDWIDTH'), scale=1000)
+                format_id = last_media.get('NAME')
+                if not format_id:
+                    format_id = '-'.join(filter(None, [
+                        m3u8_id, 'm3u8-%d' % (tbr if tbr else len(formats))]))
                 f = {
-                    'format_id': '-'.join(filter(None, [m3u8_id, 'm3u8-%d' % (tbr if tbr else len(formats))])),
+                    'format_id': format_id,
                     'url': format_url(line.strip()),
                     'tbr': tbr,
                     'ext': ext,