mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
parent
ff5e16f2f6
commit
bc8745480e
2 changed files with 47 additions and 2 deletions
|
@ -212,7 +212,7 @@ class BandcampIE(InfoExtractor):
|
||||||
|
|
||||||
class BandcampAlbumIE(BandcampIE):
|
class BandcampAlbumIE(BandcampIE):
|
||||||
IE_NAME = 'Bandcamp:album'
|
IE_NAME = 'Bandcamp:album'
|
||||||
_VALID_URL = r'https?://(?:(?P<subdomain>[^.]+)\.)?bandcamp\.com(?:/album/(?P<id>[^/?#&]+))?'
|
_VALID_URL = r'https?://(?:(?P<subdomain>[^.]+)\.)?bandcamp\.com(?!/music)(?:/album/(?P<id>[^/?#&]+))?'
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://blazo.bandcamp.com/album/jazz-format-mixtape-vol-1',
|
'url': 'http://blazo.bandcamp.com/album/jazz-format-mixtape-vol-1',
|
||||||
|
@ -389,3 +389,43 @@ class BandcampWeeklyIE(BandcampIE):
|
||||||
'episode_id': show_id,
|
'episode_id': show_id,
|
||||||
'formats': formats
|
'formats': formats
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class BandcampMusicIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'https?://(?P<id>[^/]+)\.bandcamp\.com/music'
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'https://steviasphere.bandcamp.com/music',
|
||||||
|
'playlist_mincount': 47,
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'steviasphere',
|
||||||
|
},
|
||||||
|
}, {
|
||||||
|
'url': 'https://coldworldofficial.bandcamp.com/music',
|
||||||
|
'playlist_mincount': 10,
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'coldworldofficial',
|
||||||
|
},
|
||||||
|
}, {
|
||||||
|
'url': 'https://nuclearwarnowproductions.bandcamp.com/music',
|
||||||
|
'playlist_mincount': 399,
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'nuclearwarnowproductions',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
_TYPE_IE_DICT = {
|
||||||
|
'album': BandcampAlbumIE.ie_key(),
|
||||||
|
'track': BandcampIE.ie_key()
|
||||||
|
}
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
id = self._match_id(url)
|
||||||
|
webpage = self._download_webpage(url, id)
|
||||||
|
items = re.findall(r'href\=\"\/(?P<path>(?P<type>album|track)+/[^\"]+)', webpage)
|
||||||
|
entries = [
|
||||||
|
self.url_result(
|
||||||
|
f'https://{id}.bandcamp.com/{item[0]}',
|
||||||
|
ie=self._TYPE_IE_DICT[item[1]])
|
||||||
|
for item in items]
|
||||||
|
return self.playlist_result(entries, id)
|
||||||
|
|
|
@ -109,7 +109,12 @@ from .awaan import (
|
||||||
from .azmedien import AZMedienIE
|
from .azmedien import AZMedienIE
|
||||||
from .baidu import BaiduVideoIE
|
from .baidu import BaiduVideoIE
|
||||||
from .bandaichannel import BandaiChannelIE
|
from .bandaichannel import BandaiChannelIE
|
||||||
from .bandcamp import BandcampIE, BandcampAlbumIE, BandcampWeeklyIE
|
from .bandcamp import (
|
||||||
|
BandcampIE,
|
||||||
|
BandcampAlbumIE,
|
||||||
|
BandcampWeeklyIE,
|
||||||
|
BandcampMusicIE,
|
||||||
|
)
|
||||||
from .bbc import (
|
from .bbc import (
|
||||||
BBCCoUkIE,
|
BBCCoUkIE,
|
||||||
BBCCoUkArticleIE,
|
BBCCoUkArticleIE,
|
||||||
|
|
Loading…
Reference in a new issue