[extractor/bilibili] Fix path "/audio/auxxxxx" download return 403
This commit is contained in:
parent
49c5293014
commit
17d295a1ec
1 changed files with 5 additions and 0 deletions
|
@ -369,6 +369,11 @@ class BilibiliAudioIE(BilibiliAudioBaseIE):
|
|||
'filesize': int_or_none(play_data.get('size')),
|
||||
}]
|
||||
|
||||
for a_format in formats:
|
||||
a_format.setdefault('http_headers', {}).update({
|
||||
'Referer': url,
|
||||
})
|
||||
|
||||
song = self._call_api('song/info', au_id)
|
||||
title = song['title']
|
||||
statistic = song.get('statistic') or {}
|
||||
|
|
Loading…
Reference in a new issue