Browse Source

[bandcamp] Prepend download URL with scheme when necessary (Closes #7077)

totalwebcasting
Sergey M․ 9 years ago
parent
commit
f648e682a7
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/extractor/bandcamp.py

+ 2
- 2
youtube_dl/extractor/bandcamp.py View File

@ -93,8 +93,8 @@ class BandcampIE(InfoExtractor):
final_url_webpage = self._download_webpage(request_url, video_id, 'Requesting download url')
# If we could correctly generate the .rand field the url would be
# in the "download_url" key
final_url = self._search_regex(
r'"retry_url":"(.*?)"', final_url_webpage, 'final video URL')
final_url = self._proto_relative_url(self._search_regex(
r'"retry_url":"(.+?)"', final_url_webpage, 'final video URL'), 'http:')
return {
'id': video_id,


Loading…
Cancel
Save