How do you convert an entire directory/folder with ffmpeg via command line or with a batch script?
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