mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-23 21:20:50 +00:00
10 lines
278 B
Bash
10 lines
278 B
Bash
|
#!/bin/sh -
|
||
|
|
||
|
[[ -z $1 ]] && echo "Missing filename to convert" && exit 1
|
||
|
|
||
|
file=$1
|
||
|
gif="${file%.*}.gif"
|
||
|
#gifski --fps 10 -Q 70 -H 2000 --repeat 0 -o "$gif" "$file"
|
||
|
gifski --fps 8 -Q 70 -H 2000 --repeat 0 -o "$gif" "$file"
|
||
|
notify-send -a 'Convert to .gif' "Convertion done: $gif"
|