Created
March 5, 2022 19:01
-
-
Save filmgirl/aff5df3ff6441874e403c5741025286d to your computer and use it in GitHub Desktop.
Gif to Video ZSH Snippet For macOS/QuickTime
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
## Put in your .zshrc or .bashrc file | |
g2v() { | |
ffmpeg -f gif -i $1 -pix_fmt yuv420p $2 | |
} | |
## Modified from https://ewanvalentine.io/make-your-own-gif-to-mp4-converter-using-ffmpeg-and-bash/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment