-
-
Save felipepodesta/464c27319ca6d9be14fa18d1596e5c4a to your computer and use it in GitHub Desktop.
Batch convert a directory of gifs into mp4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# Convert *.gif into *.mp4, skip if already exists. | |
outdir="." | |
for path in *.gif; do | |
out="${outdir}/${path/.gif/}.mp4" | |
[[ -f "$out" ]] && continue | |
ffmpeg -f gif -i "${path}" "${out}" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment