We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b9ede66 + 017aa17 commit 28a6fe5Copy full SHA for 28a6fe5
tidal_dl_ng/helper/path.py
@@ -364,6 +364,10 @@ def _format_ids(
364
# Handle ISRC
365
elif name == "isrc" and isinstance(media, Track):
366
return media.isrc
367
+ elif name == "album_artist_id" and isinstance(media, Album):
368
+ return str(media.artist.id)
369
+ elif name == "track_artist_id" and isinstance(media, Track):
370
+ return str(media.album.artist.id)
371
return None
372
373
0 commit comments