1

Home: Add MusicBrainz Picard

This commit is contained in:
2025-07-18 03:13:14 +02:00
parent 6d7e539261
commit d511136e37
2 changed files with 8 additions and 7 deletions

View File

@ -489,6 +489,7 @@
gparted gparted
tidal-hifi tidal-hifi
tidal-dl-ng tidal-dl-ng
picard
# Office # Office
wacomtablet # For xournalpp/krita wacomtablet # For xournalpp/krita

View File

@ -50,22 +50,22 @@ in {
"edit" # edit metadata in text editor "edit" # edit metadata in text editor
"fetchart" # pickup local cover art or search online "fetchart" # pickup local cover art or search online
"fish" # beet fish generates ~/.config/fish/completions file "fish" # beet fish generates ~/.config/fish/completions file
# "lyrics" # fetch song lyrics "lyrics" # fetch song lyrics
"replaygain" # write replaygain tags for automatic loudness adjustments "replaygain" # write replaygain tags for automatic loudness adjustments
]; ];
fetchart = { fetchart = {
auto = true; auto = "yes";
sources = "filesystem coverart itunes amazon albumart"; # sources are queried in this order sources = "filesystem coverart itunes amazon albumart"; # sources are queried in this order
}; };
# lyrics = { lyrics = {
# auto = "no"; # we need the lyrics as .lrc files, not embedded into the metadata auto = "yes"; # only embeds lyrics into metadata, needed for jellyfin but useless for rmpc
# synced = "yes"; # prefer synced lyrics if provided synced = "yes"; # prefer synced lyrics if provided
# }; };
replaygain = { replaygain = {
auto = false; # analyze on import automatically auto = "yes"; # analyze on import automatically
backend = "ffmpeg"; backend = "ffmpeg";
overwrite = true; # re-analyze files with existing replaygain tags on import overwrite = true; # re-analyze files with existing replaygain tags on import
}; };