The Mudcat Café TM
Thread #162759   Message #3875617
Posted By: GUEST
07-Sep-17 - 06:22 AM
Thread Name: Tech: ffmpeg batch process volume increase
Subject: RE: Tech: ffmpeg batch process volume increase
On Linux/ bash, I guess you could put all your files in one directory and try something along these lines (with your full ffmpeg command).

for f in *.wav; do\
ffmpeg -i $f;\
done