How do you convert an entire directory/folder with ffmpeg via command line or with a batch script?
Also if you want same convertion in subfolders. here is the recursive code.
for /R "folder_path" %%f in (*.mov,*.mxf,*.mkv,*.webm) do ( ffmpeg.exe -i "%%~f" "%%~f.mp4" )