diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-03-06 22:53:53 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-03-06 22:53:53 +0600 |
commit | f207019ce51e18f7151dc9ab332cc8d0933021b6 (patch) | |
tree | 5980f71b914ca39305cb1d2a24183eb481fe1399 /youtube_dl/extractor/common.py | |
parent | 8dc9d361c22754e6b6b52136d496d754dea65b46 (diff) |
[extractor/common] Remove 'm3u8' from quality selection URL
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 06bce12e0..f9e8e2bad 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -839,7 +839,7 @@ class InfoExtractor(object): m3u8_id=None): formats = [{ - 'format_id': '-'.join(filter(None, [m3u8_id, 'm3u8-meta'])), + 'format_id': '-'.join(filter(None, [m3u8_id, 'meta'])), 'url': m3u8_url, 'ext': ext, 'protocol': 'm3u8', |