2024-02-25, 02:29 PM
I encountered a similar problem with an album containing FLAC files. To address it, I utilized the 'metaflac' tool to configure the ALBUMARTIST.
Here are the steps.
Install the package 'flac':
Remove the tag
Set the tag
Tip: to view tags, use the --show-all-tags option.
Here are the steps.
Install the package 'flac':
Code:
apt update
apt install flac
Remove the tag
Code:
metaflac --remove-tag=ALBUMARTIST *.flac
Set the tag
Code:
metaflac --set-tag=ALBUMARTIST="Various Aristst" *.flac
Tip: to view tags, use the --show-all-tags option.