Replaygain issue

Replaygain is not completing for me. When I run the command I get a skipping album message:

$ beet replaygain -a Lost in the Dream
replaygain: Analyzing 1 albums ~ ffmpeg backend…
replaygain: Skipping album The War on Drugs - Lost in the Dream

I am using ffmpeg on FLAC files. In my config file overwrite=yes in case there are already Replaygain values. I received the same message while using Audio Tools. Any idea why it is not calculating Replaygain values? Previously I used Audio Tools and it worked fine, but I updated beets and python.

Thanks!

Does that album already have replaygain values? You could run with -f to force replaygain to be recalculated even if it’s already present.

I uninstalled and reinstalled beets and my plugins and now I am able to get ffmpeg to work. However when I try Python Audio Tools I still get errors. Here is the message I receive:

File “/mnt/mpathf/andydufresne/virtualenv3/bin/beet”, line 8, in
sys.exit(main())
File “/mnt/mpathf/andydufresne/virtualenv3/lib/python3.10/site-packages/beets/ui/init.py”, line 1291, in main
_raw_main(args)
File “/mnt/mpathf/andydufresne/virtualenv3/lib/python3.10/site-packages/beets/ui/init.py”, line 1278, in _raw_main
subcommand.func(lib, suboptions, subargs)
File “/mnt/mpathf/andydufresne/virtualenv3/lib/python3.10/site-packages/beetsplug/replaygain.py”, line 1335, in command_func
self.handle_album(album, write, force)
File “/mnt/mpathf/andydufresne/virtualenv3/lib/python3.10/site-packages/beetsplug/replaygain.py”, line 1162, in handle_album
self._apply(
File “/mnt/mpathf/andydufresne/virtualenv3/lib/python3.10/site-packages/beetsplug/replaygain.py”, line 1264, in _apply
callback(func(*args, **kwds))
File “/mnt/mpathf/andydufresne/virtualenv3/lib/python3.10/site-packages/beetsplug/replaygain.py”, line 911, in compute_album_gain
rg_track_gain, rg_track_peak = self._title_gain(
File “/mnt/mpathf/andydufresne/virtualenv3/lib/python3.10/site-packages/beetsplug/replaygain.py”, line 870, in _title_gain
gain, peak = rg.title_gain(audiofile.to_pcm())
TypeError: ReplayGain.title_gain() takes no arguments (1 given)

At least ffmpeg is working now, but any idea what is going on with Audio Tools?