AIMP Forum

AIMP for Windows => Ошибки и замечания / Bugs => Topic started by: walruster on April 08, 2025, 14:19:02

Title: [x] [2670] Album artist repeated twice
Post by: walruster on April 08, 2025, 14:19:02
Hello, thanks for a nice music player!

However, there is something wrong with how album artist is displayed for my particular music tags. The album artist name is repeated like so: "Danny Brown;Danny Brown".

This is shown in the main interface (see danny.png) and when inspecting the tags in the Tag Editor (see tag.png).

The tags are curated by Beets (https://beets.io/) with no custom settings. There are indeed repetitions with multiple tags set to "Danny Brown" (ALBUM_ARTIST, ALBUMARTISTS, etc are all present) but no tags contain the concatenated "Danny Brown;Danny Brown".

I have recently switched from Foobar to AIMP. There was no problem displaying the name in Foobar for these tags.

Is AIMP reading two of these identical tags and concatenating them with a semicolon?


Here's a full tag dump from Mediainfo:
Code: [Select]
Format                                   : FLAC
Format/Info                              : Free Lossless Audio Codec
File size                                : 11.1 MiB
Duration                                 : 1 min 50 s
Overall bit rate mode                    : Variable
Overall bit rate                         : 843 kb/s
Album                                    : XXX
Album/Performer                          : Danny Brown / Danny Brown
Part                                     : 1
Part/Total                               : 1
Track name                               : XXX
Track name/Position                      : 1
Track name/Total                         : 19
Performer                                : Danny Brown
Publisher                                : Fool’s Gold Records
Label                                    : Fool’s Gold Records
Recorded date                            : 2011-08-15 / 2011
BPM                                      : 0
ALBUM_ARTIST                             : Danny Brown
ALBUMARTIST_CREDIT                       : Danny Brown
ALBUMARTISTSORT                          : Brown, Danny
ALBUMARTISTS                             : Danny Brown
ALBUM_ARTISTS                            : Danny Brown
ALBUMARTISTS_CREDIT                      : Danny Brown
ALBUMARTISTS_SORT                        : Brown, Danny
RELEASESTATUS                            : Official
MUSICBRAINZ_ALBUMSTATUS                  : Official
RELEASETYPE                              : album
MUSICBRAINZ_ALBUMTYPE                    : album
ARTIST_CREDIT                            : Danny Brown
ARTISTSORT                               : Brown, Danny
ARTISTS                                  : Danny Brown
ARTISTS_CREDIT                           : Danny Brown
ARTISTS_SORT                             : Brown, Danny
COMPILATION                              : 0
RELEASECOUNTRY                           : XW
DISCC                                    : 1
MUSICBRAINZ_RELEASEGROUPID               : bb024a53-89a1-4c57-b17c-88f1a127eb32
MUSICBRAINZ_RELEASETRACKID               : 5897789e-090e-32a9-92b7-60d14631f90a
MEDIA                                    : Digital Media
ORIGINALDATE                             : 2011-08-15
SCRIPT                                   : Latn
TRACK                                    : 1
TRACKC                                   : 19

Many thanks in advance!
Title: Re: Album artist repeated twice
Post by: Artem on April 08, 2025, 16:24:46
It should not concatenate the artists in this case. Can you share one of the tracks that has an issue?
Title: Re: Album artist repeated twice
Post by: walruster on April 08, 2025, 16:51:56
Certainly, here's a small file.

I believe it is concatenating the "performer" and "album artist" tags.
Title: Re: Album artist repeated twice
Post by: Artem on April 08, 2025, 16:56:52
File contains duplicate tag values:
Code: [Select]
ALBUM ARTIST=Nicolas Jaar
ALBUM_ARTIST=Nicolas Jaar

What why it repeated twice. I think I should make my code more smart and ignore any duplicated values
Title: Re: Album artist repeated twice
Post by: walruster on April 08, 2025, 20:02:59
File contains duplicate tag values.

Yes, and I don't know why this is the default of Beets. Maybe they want to support all possible tags that different clients and players would look at?

I have read the source (https://github.com/beetbox/beets/blob/master/beets/autotag/__init__.py) but can't tell why or how exactly this is configured in the autotagger.

Thanks for having a look at ignoring duplicated values!