I have wav files I am normalizing with ffmpeg-normalize (a python program). My batch file is this
for %%n in (*.wav) do ffmpeg-normalize "%%n" -nt peak -t 0 -o "%%n-norm.wav"
In my directory of 5 files, I get 5 -norm.wav files. Unfortunately then, the batch file creates 5 -norm.wav-norm.wav files and so on and so on. Why wouldn't it stop at the original list of 5 files?