79622352

Date: 2025-05-14 22:28:33
Score: 2
Natty:
Report link

This will also work with file names that have spaces in them. I tried to add this to the answer of L. Scott Johnson, but stackoverflow did not allow to do so.

mkdir louder
for f in *.mp3
do
  ffmpeg -i "$f" -filter:a "volume=1.5" "louder/$f"
done
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user279078