Skip to content

Instantly share code, notes, and snippets.

@drguildo
Created April 27, 2017 14:29
Show Gist options
  • Save drguildo/53ba27693d31a345708aac6d4f666fd0 to your computer and use it in GitHub Desktop.
Save drguildo/53ba27693d31a345708aac6d4f666fd0 to your computer and use it in GitHub Desktop.
Convert large GIFs to MP4.
find . -iname "*.gif" -size +500k -exec ffmpeg -i {} `basename {} .gif`.mp4 \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment