mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-06 13:07:07 +01:00
Merge pull request #39 from insaneracist/bandcamp-fix-tests
[bandcamp] fix failing test. remove subclass hack
This commit is contained in:
commit
ddb77f30ee
@ -236,15 +236,6 @@ def _real_extract(self, url):
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class BandcampAlbumTrackIE(BandcampIE):
|
|
||||||
IE_NAME = "Bandcamp:albumtrack"
|
|
||||||
"""Hack class to force album downloads to have prefixed track numbers by default"""
|
|
||||||
def _real_extract(self, url):
|
|
||||||
data = super()._real_extract(url)
|
|
||||||
data['title'] = '{:02d} - {} - {}'.format(data['track_number'], data['artist'], data['track'])
|
|
||||||
return data
|
|
||||||
|
|
||||||
|
|
||||||
class BandcampAlbumIE(BandcampBaseIE):
|
class BandcampAlbumIE(BandcampBaseIE):
|
||||||
IE_NAME = 'Bandcamp:album'
|
IE_NAME = 'Bandcamp:album'
|
||||||
_VALID_URL = r'https?://(?:(?P<subdomain>[^.]+)\.)?bandcamp\.com(?:/album/(?P<album_id>[^/?#&]+))?'
|
_VALID_URL = r'https?://(?:(?P<subdomain>[^.]+)\.)?bandcamp\.com(?:/album/(?P<album_id>[^/?#&]+))?'
|
||||||
@ -341,7 +332,7 @@ def _real_extract(self, url):
|
|||||||
entries = [
|
entries = [
|
||||||
self.url_result(
|
self.url_result(
|
||||||
compat_urlparse.urljoin(url, track['title_link']),
|
compat_urlparse.urljoin(url, track['title_link']),
|
||||||
ie=BandcampAlbumTrackIE.ie_key(),
|
ie=BandcampIE.ie_key(),
|
||||||
video_title=track['title'])
|
video_title=track['title'])
|
||||||
for track in tracks
|
for track in tracks
|
||||||
if track.get('duration')]
|
if track.get('duration')]
|
||||||
|
@ -84,7 +84,7 @@
|
|||||||
)
|
)
|
||||||
from .azmedien import AZMedienIE
|
from .azmedien import AZMedienIE
|
||||||
from .baidu import BaiduVideoIE
|
from .baidu import BaiduVideoIE
|
||||||
from .bandcamp import BandcampIE, BandcampAlbumTrackIE, BandcampAlbumIE, BandcampWeeklyIE
|
from .bandcamp import BandcampIE, BandcampAlbumIE, BandcampWeeklyIE
|
||||||
from .bbc import (
|
from .bbc import (
|
||||||
BBCCoUkIE,
|
BBCCoUkIE,
|
||||||
BBCCoUkArticleIE,
|
BBCCoUkArticleIE,
|
||||||
|
Loading…
Reference in New Issue
Block a user