1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 11:39:28 +00:00

Update youtube_dl/extractor/bandlab.py

This commit is contained in:
dirkf 2024-01-23 04:02:26 +00:00 committed by GitHub
parent f7c7ffbd09
commit 00d8a07eb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -144,7 +144,7 @@ class BandlabAlbumOrPlaylistIE(InfoExtractor):
entries = [] entries = []
for track in traverse_obj(config, ('posts', Ellipsis)): for track in traverse_obj(config, ('posts', Ellipsis)):
url, name = (traverse_obj(track, ('track', { url, name = (traverse_obj(track, ('track', {
'url': ('sample', 'audioUrl', T(url_or_none) 'url': ('sample', 'audioUrl', T(url_or_none)),
'name': ('name', T(txt_or_none)), 'name': ('name', T(txt_or_none)),
}), ('revision', { }), ('revision', {
'url': ('mixdown', 'file', T(url_or_none)), 'url': ('mixdown', 'file', T(url_or_none)),