Skip to content

Instantly share code, notes, and snippets.

@K-Francis-H
Created January 2, 2024 20:05
Show Gist options
  • Select an option

  • Save K-Francis-H/7aa2e0ce2e5540533a34e14f5de196bc to your computer and use it in GitHub Desktop.

Select an option

Save K-Francis-H/7aa2e0ce2e5540533a34e14f5de196bc to your computer and use it in GitHub Desktop.
mp4->gif
#!/bin/sh
ffmpeg \
-i $1 \
-r 15 \
-vf "scale=320:-1,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" \
-ss 00:00:00 -to 00:00:01 \
$2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment