]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/bandcamp.py
[youtube] Detect DRM better
[yt-dlp.git] / yt_dlp / extractor / bandcamp.py
CommitLineData
8bdd16b4 1# coding: utf-8
3798eadc
PH
2from __future__ import unicode_literals
3
0aacd2de 4import random
45aef472 5import re
0aacd2de 6import time
45aef472
PH
7
8from .common import InfoExtractor
8bdd16b4 9from ..compat import compat_str
1cc79574 10from ..utils import (
45aef472 11 ExtractorError,
ba717dca
S
12 float_or_none,
13 int_or_none,
6d923aab 14 KNOWN_EXTENSIONS,
0aacd2de 15 parse_filesize,
4991e16c
S
16 str_or_none,
17 try_get,
0aacd2de 18 update_url_query,
62bafabc 19 unified_strdate,
4991e16c 20 unified_timestamp,
3052a30d 21 url_or_none,
8bdd16b4 22 urljoin,
45aef472
PH
23)
24
25
8bdd16b4 26class BandcampIE(InfoExtractor):
27 _VALID_URL = r'https?://[^/]+\.bandcamp\.com/track/(?P<id>[^/?#&]+)'
cffa6aa1 28 _TESTS = [{
3467b3e2 29 'url': 'http://youtube-dl.bandcamp.com/track/youtube-dl-test-song',
3798eadc
PH
30 'md5': 'c557841d5e50261777a6585648adf439',
31 'info_dict': {
d9bf4652
S
32 'id': '1812978515',
33 'ext': 'mp3',
8bdd16b4 34 'title': "youtube-dl \"'/\\ä↭ - youtube-dl \"'/\\ä↭ - youtube-dl test song \"'/\\ä↭",
d9bf4652 35 'duration': 9.8485,
8bdd16b4 36 'uploader': 'youtube-dl "\'/\\ä↭',
3a379e5e 37 'upload_date': '20121129',
8bdd16b4 38 'timestamp': 1354224127,
6f5ac90c 39 },
3798eadc 40 '_skip': 'There is a limit of 200 free downloads / month for the test song'
d9bf4652 41 }, {
4991e16c 42 # free download
d9bf4652 43 'url': 'http://benprunty.bandcamp.com/track/lanius-battle',
d9bf4652
S
44 'info_dict': {
45 'id': '2650410135',
0f63dc24
TF
46 'ext': 'aiff',
47 'title': 'Ben Prunty - Lanius (Battle)',
4991e16c 48 'thumbnail': r're:^https?://.*\.jpg$',
0f63dc24 49 'uploader': 'Ben Prunty',
4991e16c
S
50 'timestamp': 1396508491,
51 'upload_date': '20140403',
10db0d2f 52 'release_timestamp': 1396483200,
4991e16c
S
53 'release_date': '20140403',
54 'duration': 260.877,
55 'track': 'Lanius (Battle)',
56 'track_number': 1,
57 'track_id': '2650410135',
58 'artist': 'Ben Prunty',
59 'album': 'FTL: Advanced Edition Soundtrack',
d9bf4652 60 },
14b7a24c 61 }, {
4991e16c 62 # no free download, mp3 128
14b7a24c 63 'url': 'https://relapsealumni.bandcamp.com/track/hail-to-fire',
4991e16c 64 'md5': 'fec12ff55e804bb7f7ebeb77a800c8b7',
14b7a24c
PV
65 'info_dict': {
66 'id': '2584466013',
67 'ext': 'mp3',
4991e16c
S
68 'title': 'Mastodon - Hail to Fire',
69 'thumbnail': r're:^https?://.*\.jpg$',
70 'uploader': 'Mastodon',
71 'timestamp': 1322005399,
72 'upload_date': '20111122',
10db0d2f 73 'release_timestamp': 1076112000,
4991e16c
S
74 'release_date': '20040207',
75 'duration': 120.79,
76 'track': 'Hail to Fire',
14b7a24c 77 'track_number': 5,
4991e16c
S
78 'track_id': '2584466013',
79 'artist': 'Mastodon',
80 'album': 'Call of the Mastodon',
14b7a24c 81 },
cffa6aa1 82 }]
45aef472 83
8bdd16b4 84 def _extract_data_attr(self, webpage, video_id, attr='tralbum', fatal=True):
85 return self._parse_json(self._html_search_regex(
86 r'data-%s=(["\'])({.+?})\1' % attr, webpage,
87 attr + ' data', group=2), video_id, fatal=fatal)
88
45aef472 89 def _real_extract(self, url):
8bdd16b4 90 title = self._match_id(url)
45aef472 91 webpage = self._download_webpage(url, title)
8bdd16b4 92 tralbum = self._extract_data_attr(webpage, title)
93 thumbnail = self._og_search_thumbnail(webpage)
94
95 track_id = None
96 track = None
97 track_number = None
98 duration = None
99
100 formats = []
101 track_info = try_get(tralbum, lambda x: x['trackinfo'][0], dict)
102 if track_info:
103 file_ = track_info.get('file')
104 if isinstance(file_, dict):
105 for format_id, format_url in file_.items():
106 if not url_or_none(format_url):
107 continue
108 ext, abr_str = format_id.split('-', 1)
109 formats.append({
110 'format_id': format_id,
111 'url': self._proto_relative_url(format_url, 'http:'),
112 'ext': ext,
113 'vcodec': 'none',
114 'acodec': ext,
115 'abr': int_or_none(abr_str),
116 })
117 track = track_info.get('title')
118 track_id = str_or_none(
119 track_info.get('track_id') or track_info.get('id'))
120 track_number = int_or_none(track_info.get('track_num'))
121 duration = float_or_none(track_info.get('duration'))
122
123 embed = self._extract_data_attr(webpage, title, 'embed', False)
124 current = tralbum.get('current') or {}
125 artist = embed.get('artist') or current.get('artist') or tralbum.get('artist')
126 timestamp = unified_timestamp(
127 current.get('publish_date') or tralbum.get('album_publish_date'))
128
129 download_link = tralbum.get('freeDownloadPage')
4991e16c 130 if download_link:
8bdd16b4 131 track_id = compat_str(tralbum['id'])
4991e16c
S
132
133 download_webpage = self._download_webpage(
134 download_link, track_id, 'Downloading free downloads page')
135
8bdd16b4 136 blob = self._extract_data_attr(download_webpage, track_id, 'blob')
4991e16c
S
137
138 info = try_get(
139 blob, (lambda x: x['digital_items'][0],
140 lambda x: x['download_items'][0]), dict)
141 if info:
142 downloads = info.get('downloads')
143 if isinstance(downloads, dict):
8bdd16b4 144 if not track:
145 track = info.get('title')
4991e16c
S
146 if not artist:
147 artist = info.get('artist')
148 if not thumbnail:
149 thumbnail = info.get('thumb_url')
150
151 download_formats = {}
152 download_formats_list = blob.get('download_formats')
153 if isinstance(download_formats_list, list):
154 for f in blob['download_formats']:
155 name, ext = f.get('name'), f.get('file_extension')
156 if all(isinstance(x, compat_str) for x in (name, ext)):
157 download_formats[name] = ext.strip('.')
158
159 for format_id, f in downloads.items():
160 format_url = f.get('url')
161 if not format_url:
162 continue
163 # Stat URL generation algorithm is reverse engineered from
164 # download_*_bundle_*.js
165 stat_url = update_url_query(
166 format_url.replace('/download/', '/statdownload/'), {
167 '.rand': int(time.time() * 1000 * random.random()),
168 })
169 format_id = f.get('encoding_name') or format_id
170 stat = self._download_json(
171 stat_url, track_id, 'Downloading %s JSON' % format_id,
172 transform_source=lambda s: s[s.index('{'):s.rindex('}') + 1],
173 fatal=False)
174 if not stat:
175 continue
176 retry_url = url_or_none(stat.get('retry_url'))
177 if not retry_url:
178 continue
8bdd16b4 179 formats.append({
4991e16c
S
180 'url': self._proto_relative_url(retry_url, 'http:'),
181 'ext': download_formats.get(format_id),
182 'format_id': format_id,
183 'format_note': f.get('description'),
184 'filesize': parse_filesize(f.get('size_mb')),
185 'vcodec': 'none',
933dbf5a 186 'acodec': format_id.split('-')[0],
4991e16c 187 })
5ecd3c6a 188
8bdd16b4 189 self._sort_formats(formats)
0aacd2de 190
8bdd16b4 191 title = '%s - %s' % (artist, track) if artist else track
192
193 if not duration:
194 duration = float_or_none(self._html_search_meta(
195 'duration', webpage, default=None))
45aef472 196
5ecd3c6a 197 return {
8bdd16b4 198 'id': track_id,
199 'title': title,
4991e16c 200 'thumbnail': thumbnail,
8bdd16b4 201 'uploader': artist,
4991e16c 202 'timestamp': timestamp,
10db0d2f 203 'release_timestamp': unified_timestamp(tralbum.get('album_release_date')),
8bdd16b4 204 'duration': duration,
205 'track': track,
206 'track_number': track_number,
207 'track_id': track_id,
208 'artist': artist,
209 'album': embed.get('album_title'),
210 'formats': formats,
5ecd3c6a 211 }
09804265
JMF
212
213
8bdd16b4 214class BandcampAlbumIE(BandcampIE):
3798eadc 215 IE_NAME = 'Bandcamp:album'
85a0ad01 216 _VALID_URL = r'https?://(?:(?P<subdomain>[^.]+)\.)?bandcamp\.com/album/(?P<id>[^/?#&]+)'
09804265 217
22a6f150 218 _TESTS = [{
3798eadc
PH
219 'url': 'http://blazo.bandcamp.com/album/jazz-format-mixtape-vol-1',
220 'playlist': [
d35dc6d3 221 {
3798eadc
PH
222 'md5': '39bc1eded3476e927c724321ddf116cf',
223 'info_dict': {
13ba3a64
PH
224 'id': '1353101989',
225 'ext': 'mp3',
8bdd16b4 226 'title': 'Blazo - Intro',
227 'timestamp': 1311756226,
228 'upload_date': '20110727',
229 'uploader': 'Blazo',
d35dc6d3
JMF
230 }
231 },
232 {
3798eadc
PH
233 'md5': '1a2c32e2691474643e912cc6cd4bffaa',
234 'info_dict': {
13ba3a64
PH
235 'id': '38097443',
236 'ext': 'mp3',
8bdd16b4 237 'title': 'Blazo - Kero One - Keep It Alive (Blazo remix)',
238 'timestamp': 1311757238,
239 'upload_date': '20110727',
240 'uploader': 'Blazo',
d35dc6d3
JMF
241 }
242 },
243 ],
13ba3a64
PH
244 'info_dict': {
245 'title': 'Jazz Format Mixtape vol.1',
72c1f8de
PH
246 'id': 'jazz-format-mixtape-vol-1',
247 'uploader_id': 'blazo',
13ba3a64 248 },
3798eadc
PH
249 'params': {
250 'playlistend': 2
d35dc6d3 251 },
72c1f8de 252 'skip': 'Bandcamp imposes download limits.'
22a6f150
PH
253 }, {
254 'url': 'http://nightbringer.bandcamp.com/album/hierophany-of-the-open-grave',
255 'info_dict': {
256 'title': 'Hierophany of the Open Grave',
72c1f8de
PH
257 'uploader_id': 'nightbringer',
258 'id': 'hierophany-of-the-open-grave',
22a6f150
PH
259 },
260 'playlist_mincount': 9,
64fc49ab
S
261 }, {
262 # with escaped quote in title
263 'url': 'https://jstrecords.bandcamp.com/album/entropy-ep',
264 'info_dict': {
265 'title': '"Entropy" EP',
266 'uploader_id': 'jstrecords',
267 'id': 'entropy-ep',
8bdd16b4 268 'description': 'md5:0ff22959c943622972596062f2f366a5',
64fc49ab
S
269 },
270 'playlist_mincount': 3,
019f4c03
YCH
271 }, {
272 # not all tracks have songs
273 'url': 'https://insulters.bandcamp.com/album/we-are-the-plague',
274 'info_dict': {
275 'id': 'we-are-the-plague',
276 'title': 'WE ARE THE PLAGUE',
277 'uploader_id': 'insulters',
8bdd16b4 278 'description': 'md5:b3cf845ee41b2b1141dc7bde9237255f',
019f4c03
YCH
279 },
280 'playlist_count': 2,
22a6f150 281 }]
d35dc6d3 282
62bafabc
AV
283 @classmethod
284 def suitable(cls, url):
6d923aab
S
285 return (False
286 if BandcampWeeklyIE.suitable(url) or BandcampIE.suitable(url)
287 else super(BandcampAlbumIE, cls).suitable(url))
62bafabc 288
09804265 289 def _real_extract(self, url):
5ad28e7f 290 uploader_id, album_id = self._match_valid_url(url).groups()
72c1f8de
PH
291 playlist_id = album_id or uploader_id
292 webpage = self._download_webpage(url, playlist_id)
8bdd16b4 293 tralbum = self._extract_data_attr(webpage, playlist_id)
294 track_info = tralbum.get('trackinfo')
295 if not track_info:
296 raise ExtractorError('The page doesn\'t contain any tracks')
019f4c03 297 # Only tracks with duration info have songs
09804265 298 entries = [
8239c679 299 self.url_result(
8bdd16b4 300 urljoin(url, t['title_link']), BandcampIE.ie_key(),
301 str_or_none(t.get('track_id') or t.get('id')), t.get('title'))
302 for t in track_info
303 if t.get('duration')]
304
305 current = tralbum.get('current') or {}
3a379e5e 306
09804265
JMF
307 return {
308 '_type': 'playlist',
72c1f8de 309 'uploader_id': uploader_id,
b48f147d 310 'id': playlist_id,
8bdd16b4 311 'title': current.get('title'),
312 'description': current.get('about'),
313 'entries': entries,
09804265 314 }
62bafabc
AV
315
316
8bdd16b4 317class BandcampWeeklyIE(BandcampIE):
6d923aab
S
318 IE_NAME = 'Bandcamp:weekly'
319 _VALID_URL = r'https?://(?:www\.)?bandcamp\.com/?\?(?:.*?&)?show=(?P<id>\d+)'
62bafabc
AV
320 _TESTS = [{
321 'url': 'https://bandcamp.com/?show=224',
322 'md5': 'b00df799c733cf7e0c567ed187dea0fd',
323 'info_dict': {
324 'id': '224',
325 'ext': 'opus',
6d923aab
S
326 'title': 'BC Weekly April 4th 2017 - Magic Moments',
327 'description': 'md5:5d48150916e8e02d030623a48512c874',
328 'duration': 5829.77,
329 'release_date': '20170404',
330 'series': 'Bandcamp Weekly',
331 'episode': 'Magic Moments',
6d923aab 332 'episode_id': '224',
8bdd16b4 333 },
334 'params': {
335 'format': 'opus-lo',
336 },
62bafabc
AV
337 }, {
338 'url': 'https://bandcamp.com/?blah/blah@&show=228',
339 'only_matching': True
340 }]
341
342 def _real_extract(self, url):
8bdd16b4 343 show_id = self._match_id(url)
344 webpage = self._download_webpage(url, show_id)
62bafabc 345
8bdd16b4 346 blob = self._extract_data_attr(webpage, show_id, 'blob')
62bafabc 347
8bdd16b4 348 show = blob['bcw_data'][show_id]
62bafabc 349
6d923aab
S
350 formats = []
351 for format_id, format_url in show['audio_stream'].items():
3052a30d 352 if not url_or_none(format_url):
6d923aab
S
353 continue
354 for known_ext in KNOWN_EXTENSIONS:
355 if known_ext in format_id:
356 ext = known_ext
357 break
358 else:
359 ext = None
360 formats.append({
361 'format_id': format_id,
362 'url': format_url,
363 'ext': ext,
364 'vcodec': 'none',
365 })
366 self._sort_formats(formats)
62bafabc 367
6d923aab
S
368 title = show.get('audio_title') or 'Bandcamp Weekly'
369 subtitle = show.get('subtitle')
370 if subtitle:
371 title += ' - %s' % subtitle
62bafabc 372
62bafabc 373 return {
8bdd16b4 374 'id': show_id,
6d923aab
S
375 'title': title,
376 'description': show.get('desc') or show.get('short_desc'),
62bafabc 377 'duration': float_or_none(show.get('audio_duration')),
62bafabc
AV
378 'is_live': False,
379 'release_date': unified_strdate(show.get('published_date')),
380 'series': 'Bandcamp Weekly',
6d923aab 381 'episode': show.get('subtitle'),
8bdd16b4 382 'episode_id': show_id,
62bafabc
AV
383 'formats': formats
384 }
bc874548
A
385
386
85a0ad01 387class BandcampUserIE(InfoExtractor):
388 IE_NAME = 'Bandcamp:user'
389 _VALID_URL = r'https?://(?!www\.)(?P<id>[^.]+)\.bandcamp\.com(?:/music)?/?(?:[#?]|$)'
390
bc874548 391 _TESTS = [{
85a0ad01 392 # Type 1 Bandcamp user page.
393 'url': 'https://adrianvonziegler.bandcamp.com',
394 'info_dict': {
395 'id': 'adrianvonziegler',
396 'title': 'Discography of adrianvonziegler',
397 },
398 'playlist_mincount': 23,
399 }, {
400 # Bandcamp user page with only one album
401 'url': 'http://dotscale.bandcamp.com',
402 'info_dict': {
403 'id': 'dotscale',
404 'title': 'Discography of dotscale'
405 },
406 'playlist_count': 1,
407 }, {
408 # Type 2 Bandcamp user page.
409 'url': 'https://nightcallofficial.bandcamp.com',
410 'info_dict': {
411 'id': 'nightcallofficial',
412 'title': 'Discography of nightcallofficial',
413 },
414 'playlist_count': 4,
415 }, {
bc874548
A
416 'url': 'https://steviasphere.bandcamp.com/music',
417 'playlist_mincount': 47,
418 'info_dict': {
419 'id': 'steviasphere',
85a0ad01 420 'title': 'Discography of steviasphere',
bc874548
A
421 },
422 }, {
423 'url': 'https://coldworldofficial.bandcamp.com/music',
424 'playlist_mincount': 10,
425 'info_dict': {
426 'id': 'coldworldofficial',
85a0ad01 427 'title': 'Discography of coldworldofficial',
bc874548
A
428 },
429 }, {
430 'url': 'https://nuclearwarnowproductions.bandcamp.com/music',
431 'playlist_mincount': 399,
432 'info_dict': {
433 'id': 'nuclearwarnowproductions',
85a0ad01 434 'title': 'Discography of nuclearwarnowproductions',
bc874548 435 },
85a0ad01 436 }]
bc874548
A
437
438 def _real_extract(self, url):
85a0ad01 439 uploader = self._match_id(url)
440 webpage = self._download_webpage(url, uploader)
441
442 discography_data = (re.findall(r'<li data-item-id=["\'][^>]+>\s*<a href=["\']([^"\']+)', webpage)
443 or re.findall(r'<div[^>]+trackTitle["\'][^"\']+["\']([^"\']+)', webpage))
444
445 return self.playlist_from_matches(
446 discography_data, uploader, f'Discography of {uploader}', getter=lambda x: urljoin(url, x))