[Bilibili] Pass referer for all formats (#2834)

Authored by: blackgear
This commit is contained in:
Daniel.Zeng 2022-02-20 19:27:02 +08:00 committed by GitHub
parent a7d4acc018
commit be8d623455
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -225,10 +225,6 @@ class BiliBiliIE(InfoExtractor):
'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 @@ class BiliBiliIE(InfoExtractor):
'id': video_id,
'duration': float_or_none(durl.get('length'), 1000),
'formats': formats,
'http_headers': {
'Referer': url,
},
})
break