1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-29 19:47:54 +01:00

* Update extractor to match changes

This commit is contained in:
Lyz 2019-10-25 15:10:44 +02:00
parent 162bcc68dc
commit 1a78919595
No known key found for this signature in database
GPG Key ID: 6C7D7C1612CDE02F

View File

@ -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<value>(?:(?!\1).)+)\1' % key,
webpage, key, default=None, group='value')
r'\b%s\s*["\']?\s*:\s*(["\'])(?P<value>.+)\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(