mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-29 10:20:08 +00:00
25 lines
328 B
Plaintext
25 lines
328 B
Plaintext
|
|
#!/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
|
||
|
|
|