Skip to content

Instantly share code, notes, and snippets.

@martinwoodward
Created November 19, 2020 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinwoodward/4dd45ed3e4e2473d428e61d80f0be400 to your computer and use it in GitHub Desktop.
Save martinwoodward/4dd45ed3e4e2473d428e61d80f0be400 to your computer and use it in GitHub Desktop.
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