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

31 Answers
31

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

Leave a Reply

Your email address will not be published. Required fields are marked *