Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nemo-audio-tab: "Album Artist" tag mapping #510

Open
edschindler opened this issue Dec 19, 2023 · 0 comments
Open

nemo-audio-tab: "Album Artist" tag mapping #510

edschindler opened this issue Dec 19, 2023 · 0 comments

Comments

@edschindler
Copy link

I understand tagging is fraught with many heartfelt opinions, and albumartist may be worse than most... nonetheless...

nemo-audio-tab maps its listed "Album Artist" datum to easyid3's "performer" tag, which easyid3 maps to id3's "TMCL".

Easyid3 actually has an explicit "albumartist" tag, which it maps to id3 "TPE2". Nemo-audio-tab seems to be making confusion about albumartist worse by overriding what easyid3 s doing.

In particular, line 84
try: file.add_string_attribute('albumartist', audio["performer"][0])
should probably say
try: file.add_string_attribute('albumartist', audio["albumartist"][0])

(I have not tried the elsewhere-suggested mediainfo-tab extension (#497), perhaps replacing audio-tab with it will resolve this.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant