Skip to content

Instantly share code, notes, and snippets.

@ykarikos
Last active August 29, 2015 14:06
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 ykarikos/0a4c13e6e349e2270b86 to your computer and use it in GitHub Desktop.
Save ykarikos/0a4c13e6e349e2270b86 to your computer and use it in GitHub Desktop.
convert bunch of avi files to mp4 for ipad with ffmpeg
for f in *.avi; do file=`basename "$f" .avi`; ffmpeg -i "$f" -acodec libfaac -ab 160000 -vcodec libx264 -b 1200k -threads 0 -f mp4 "$file.mp4"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment