Skip to content

Instantly share code, notes, and snippets.

@hansgafriedzal
Created October 19, 2023 07:08
Show Gist options
  • Save hansgafriedzal/a44cf3b416f9459b81c221a7d651d898 to your computer and use it in GitHub Desktop.
Save hansgafriedzal/a44cf3b416f9459b81c221a7d651d898 to your computer and use it in GitHub Desktop.
$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