How to convert an entire directory with ffmpeg

batch-processingffmpegos-agnostic

How do you convert an entire directory/folder with ffmpeg via command line or with a batch script?

Best Answer

For Linux and macOS this can be done in one line, using parameter expansion to change the filename extension of the output file:

for i in *.avi; do ffmpeg -i "$i" "${i%.*}.mp4"; done