mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[bandcamp] fix failing test. remove subclass hack
This commit is contained in:
parent
cf553deceb
commit
ccec6955f3
@ -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):
|
||||
IE_NAME = 'Bandcamp:album'
|
||||
_VALID_URL = r'https?://(?:(?P<subdomain>[^.]+)\.)?bandcamp\.com(?:/album/(?P<album_id>[^/?#&]+))?'
|
||||
@ -341,7 +332,7 @@ def _real_extract(self, url):
|
||||
entries = [
|
||||
self.url_result(
|
||||
compat_urlparse.urljoin(url, track['title_link']),
|
||||
ie=BandcampAlbumTrackIE.ie_key(),
|
||||
ie=BandcampIE.ie_key(),
|
||||
video_title=track['title'])
|
||||
for track in tracks
|
||||
if track.get('duration')]
|
||||
|
@ -84,7 +84,7 @@
|
||||
)
|
||||
from .azmedien import AZMedienIE
|
||||
from .baidu import BaiduVideoIE
|
||||
from .bandcamp import BandcampIE, BandcampAlbumTrackIE, BandcampAlbumIE, BandcampWeeklyIE
|
||||
from .bandcamp import BandcampIE, BandcampAlbumIE, BandcampWeeklyIE
|
||||
from .bbc import (
|
||||
BBCCoUkIE,
|
||||
BBCCoUkArticleIE,
|
||||
|
Loading…
Reference in New Issue
Block a user