Created
April 6, 2020 17:41
-
-
Save nishabe/c270529df21831100ff67391085094fa to your computer and use it in GitHub Desktop.
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
// GIF creation | |
ffmpeg -ss 00:00:03.000 -i SpendTogether.mp4 -pix_fmt rgb24 -r 10 -s 440x960 -t 00:00:8.000 SpendTogether4.gif | |
ffmpeg -ss 00:00:10.000 -i Expressions.mp4 -pix_fmt rgb24 -r 10 -s 524x1080 -t 00:00:12.000 Expressions1.gif | |
// For optimization | |
convert -layers Optimize SpendTogether2.gif output_optimized.gif | |
// Installation of Tools | |
brew install ffmpeg | |
brew install imagemagick | |
// Reference | |
https://superuser.com/questions/436056/how-can-i-get-ffmpeg-to-convert-a-mov-to-a-gif | |
https://superuser.com/questions/377343/cut-part-from-video-file-from-start-position-to-end-position-with-ffmpeg | |
https://imagemagick.org/script/download.php#macosx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment