From 1a789195958d3a9edabc93b9befb68ca57e30983 Mon Sep 17 00:00:00 2001 From: Lyz Date: Fri, 25 Oct 2019 15:10:44 +0200 Subject: [PATCH] * Update extractor to match changes --- youtube_dl/extractor/bandcamp.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/youtube_dl/extractor/bandcamp.py b/youtube_dl/extractor/bandcamp.py index f14b407dc..f1a047f57 100644 --- a/youtube_dl/extractor/bandcamp.py +++ b/youtube_dl/extractor/bandcamp.py @@ -34,6 +34,9 @@ class BandcampIE(InfoExtractor): 'id': '1812978515', 'ext': 'mp3', 'title': "youtube-dl \"'/\\\u00e4\u21ad - youtube-dl test song \"'/\\\u00e4\u21ad", + 'timestamp': 1354224127, + 'uploader': 'youtube-dl \\"\'/\\\\ä↭', + 'upload_date': '20121129', 'duration': 9.8485, }, '_skip': 'There is a limit of 200 free downloads / month for the test song' @@ -117,8 +120,9 @@ class BandcampIE(InfoExtractor): def extract(key): return self._search_regex( - r'\b%s\s*["\']?\s*:\s*(["\'])(?P(?:(?!\1).)+)\1' % key, - webpage, key, default=None, group='value') + r'\b%s\s*["\']?\s*:\s*(["\'])(?P.+)\1' % key, + webpage, key, default=None, group='value' + ) artist = extract('artist') album = extract('album_title') @@ -195,7 +199,7 @@ class BandcampIE(InfoExtractor): self._sort_formats(formats) - title = '%s - %s' % (artist, track) if artist else track + title = '%s - %s' % (artist, track) if not re.match(artist, track) else track if not duration: duration = float_or_none(self._html_search_meta(