Skip to content

Instantly share code, notes, and snippets.

@alexmccabe
Last active February 22, 2017 21:52
Show Gist options
  • Save alexmccabe/ab84122d8b731d728fa6de0c3c26ed83 to your computer and use it in GitHub Desktop.
Save alexmccabe/ab84122d8b731d728fa6de0c3c26ed83 to your computer and use it in GitHub Desktop.
for file in ./*
do
filename=$(basename "$file")
ffmpeg -f gif -i "$file" "${filename%.*}".mp4
mv "${filename%.*}".mp4 ../social_vid
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment