Skip to content

Commit

Permalink
fix(beets): allow running replaygain analysis during import
Browse files Browse the repository at this point in the history
I accidentally overwrote *every* analysis because I forgot to run `beet write`
after import!
  • Loading branch information
montchr committed Nov 21, 2024
1 parent c5e3d41 commit 6011533
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions home/profiles/media/beets/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,7 @@ in
};

paths = {
# XXX: discogs plugin often fails with `%first{}`
# <https://github.com/beetbox/beets/issues/5473>
default = "%first{$albumartist}/$album%aunique{}/%if{$multidisc,$disc-}$track - $title";
# default = "$albumartist/$album%aunique{}/%if{$multidisc,$disc-}$track - $title";
};

badfiles = {
Expand Down Expand Up @@ -188,8 +185,8 @@ in
auto = true;
backend = "ffmpeg";
threads = 2;
# NOTE: Must run `beet write` after import!
parallel_on_import = true;
# NOTE: When true, must run `beet write` after import!
parallel_on_import = false;
};

edit = {
Expand Down

0 comments on commit 6011533

Please sign in to comment.