mirror of
https://github.com/SrIzan10/makesweet-api.git
synced 2026-05-01 10:55:14 +00:00
15 lines
266 B
Bash
Executable File
15 lines
266 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
image1=$1
|
|
image2=$2
|
|
filename=$3
|
|
|
|
# mostly runs in docker
|
|
docker run -v $PWD:/share paulfitz/makesweet \
|
|
--zip templates/heart-locket.zip \
|
|
--start 15 \
|
|
--in images/$1 images/$2 \
|
|
--gif "$filename.gif"
|
|
|
|
echo "saved in file $filename.gif"
|