mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 18:36:07 +01:00
parent
a7d4acc018
commit
be8d623455
@ -225,10 +225,6 @@ def _real_extract(self, url):
|
||||
'quality': -2 if 'hd.mp4' in backup_url else -3,
|
||||
})
|
||||
|
||||
for a_format in formats:
|
||||
a_format.setdefault('http_headers', {}).update({
|
||||
'Referer': url,
|
||||
})
|
||||
for audio in audios:
|
||||
formats.append({
|
||||
'url': audio.get('baseUrl') or audio.get('base_url') or audio.get('url'),
|
||||
@ -252,6 +248,9 @@ def _real_extract(self, url):
|
||||
'id': video_id,
|
||||
'duration': float_or_none(durl.get('length'), 1000),
|
||||
'formats': formats,
|
||||
'http_headers': {
|
||||
'Referer': url,
|
||||
},
|
||||
})
|
||||
break
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user