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 flacRemove the tag
Code:
metaflac --remove-tag=ALBUMARTIST *.flacSet the tag
Code:
metaflac --set-tag=ALBUMARTIST="Various Aristst" *.flacTip: to view tags, use the --show-all-tags option.
