Skip to content

Instantly share code, notes, and snippets.

@martinwoodward
Created November 19, 2020 17:52
Converting directory of mov's into mp4's
for i in *.mov; do name=`echo "$i" | cut -d'.' -f1`; echo "$name"; ffmpeg -n -i "$i" "${name}.mp4"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment