How to convert OBS MKV recordings to MP4 ready for WhatsApp with FFmpeg

To convert the latest OBS video recording into a format fully compatible with WhatsApp, use the following ffmpeg command:

ffmpeg -i "$(ls -t ~/obs/*.mkv | head -n 1)" \
  -c:v libx264 -pix_fmt yuv420p -profile:v main -level 4.0 \
  -c:a aac -b:a 128k \
  -movflags +faststart \
  whatsapp_ready.mp4

Explanation of flags and why they are needed