Skip to content

Commit

Permalink
[extractor/common] Prefix format id for audio only HLS formats
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed Oct 29, 2017
1 parent 056653b commit 9211e33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ def extract_media(x_media_line):
media_url = media.get('URI')
if media_url:
format_id = []
for v in (group_id, name):
for v in (m3u8_id, group_id, name):
if v:
format_id.append(v)
f = {
Expand Down

0 comments on commit 9211e33

Please sign in to comment.