mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 02:01:50 +00:00
[extractor/common] Prefix format id for audio only HLS formats
This commit is contained in:
parent
056653bbb1
commit
9211e3319e
1 changed files with 1 additions and 1 deletions
|
@ -1401,7 +1401,7 @@ class InfoExtractor(object):
|
||||||
media_url = media.get('URI')
|
media_url = media.get('URI')
|
||||||
if media_url:
|
if media_url:
|
||||||
format_id = []
|
format_id = []
|
||||||
for v in (group_id, name):
|
for v in (m3u8_id, group_id, name):
|
||||||
if v:
|
if v:
|
||||||
format_id.append(v)
|
format_id.append(v)
|
||||||
f = {
|
f = {
|
||||||
|
|
Loading…
Reference in a new issue