mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
[bandcamp] Prepend download URL with scheme when necessary (2) (#7077)
This commit is contained in:
parent
8daeeedc06
commit
1e52776ac3
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ def _real_extract(self, url):
|
|||
ext, abr_str = format_id.split('-', 1)
|
||||
formats.append({
|
||||
'format_id': format_id,
|
||||
'url': format_url,
|
||||
'url': self._proto_relative_url(format_url, 'http:'),
|
||||
'ext': ext,
|
||||
'vcodec': 'none',
|
||||
'acodec': ext,
|
||||
|
|
Loading…
Reference in a new issue