I have a basic command to convert mov files to mp4; I'd like to be able to convert a folder of videos from mov to mp4. I want it to take the filename of from the .mov file and use that for the filename for the .mp4. How can I do this?
ffmpeg -i video1.mov -r 60 -c:v libx264 -b:v 70000k -c:a aac -b:a 192k -movflags faststart video2.mp4
Windows 10