Created
October 19, 2023 07:08
-
-
Save hansgafriedzal/a44cf3b416f9459b81c221a7d651d898 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
$ID = 'Sv3YrYFXOWU' | |
yt-dlp $ID -f bestvideo --output '%(id)s.%(ext)s' | |
$START='00:00:07.000' # start 4 seconds in | |
$LENGTH='00:00:33.000' # end after 5 seconds | |
$SIZE='960x540' # size of the output GIF | |
ffmpeg -ss $START -i "$ID.mp4" -pix_fmt rgb24 -r 10 -s $SIZE -t $LENGTH $ID-unoptimized.gif -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment