mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-29 02:10:08 +00:00
25 lines
328 B
Bash
Executable File
25 lines
328 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
|
|
# gif palette...
|
|
ffmpeg \
|
|
-pattern_type glob -i '*.jpg' \
|
|
-vf palettegen \
|
|
palette.png
|
|
# gif...
|
|
ffmpeg \
|
|
-r 8 \
|
|
-pattern_type glob \
|
|
-i '*.jpg' \
|
|
-i palette.png \
|
|
-filter_complex paletteuse=dither=none \
|
|
animation.gif
|
|
|
|
# mkv...
|
|
ffmpeg \
|
|
-r 8 \
|
|
-pattern_type glob \
|
|
-i '*.jpg' \
|
|
animation.mkv
|
|
|