Skip to content

Instantly share code, notes, and snippets.

@tyhenry
Created May 6, 2019 15:12
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 tyhenry/15848715ae5bf33147f867c196ed06e8 to your computer and use it in GitHub Desktop.
Save tyhenry/15848715ae5bf33147f867c196ed06e8 to your computer and use it in GitHub Desktop.
batch convert video with ffmpeg
for i in *.avi; do ffmpeg -i "$i" "${i%.*}.mp4"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment