Batch Convert to YouTube-Ready MP4
Bash (Mac/Linux)
for f in *.MOV; do
ffmpeg -i "$f" \
-c:v libx264 -crf 18 -preset medium \
-c:a aac -b:a 192k \
-movflags +faststart \
"${f%.MOV}.mp4"
doneThis converts every MOV file in the current directory to YouTube-ready MP4 with CRF 18 (near-lossless quality) and AAC audio at 192kbps.