Convert .mov to mp4 with ffmpeg
Requirements
- ffmpeg installed
Converts all files with .mov extension in the folder to mp4 with ffmpeg.
for i in *.mov; do ffmpeg -i "$i" "${i%.*}.mp4";
done
Requirements
Converts all files with .mov extension in the folder to mp4 with ffmpeg.
for i in *.mov; do ffmpeg -i "$i" "${i%.*}.mp4";
done