mirror of
https://github.com/openfaas/faas.git
synced 2025-06-28 01:33:24 +00:00
7
sample-functions/gif-maker/entry.sh
Executable file
7
sample-functions/gif-maker/entry.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
export nano=`date +%s%N`
|
||||
# -s 600x400
|
||||
cat - > ./$nano.mov
|
||||
ffmpeg -loglevel panic -i $nano.mov -vf scale=iw*.5:ih*.5 -pix_fmt rgb24 -r 20 -f gif - | gifsicle --optimize=3 --delay=3 > /dev/stdout \
|
||||
&& rm $nano.mov
|
||||
|
Reference in New Issue
Block a user