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
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ class BandlabAlbumOrPlaylistIE(InfoExtractor):
entries = []
for track in traverse_obj(config, ('posts', Ellipsis)):
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)),
}), ('revision', {
'url': ('mixdown', 'file', T(url_or_none)),