forked from NapoleonWils0n/ffmpeg-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webp
executable file
·114 lines (90 loc) · 3.29 KB
/
webp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/bin/sh
#===============================================================================
# ffmpeg libwebp_anim
#===============================================================================
#===============================================================================
# script usage
#===============================================================================
usage () {
# if argument passed to function echo it
[ -z "${1}" ] || echo "! ${1}"
# display help
echo "\
# webp animated image
$(basename "$0") -i input -c 0-6 -q 0-100 -f 15 -w 600 -p none -o output.webp
-i input
-c compression level: 0 - 6 : default 4
-q quality: 0 - 100 : default 80
-f framerate: default 15
-w width: default 600px
-p preset: none|default|picture|photo|drawing|icon|text : default none
-o output.webp :optional agument
# if option not provided defaults infile-name.webp"
exit 2
}
#===============================================================================
# error messages
#===============================================================================
INVALID_OPT_ERR='Invalid option:'
REQ_ARG_ERR='requires an argument'
WRONG_ARGS_ERR='wrong number of arguments passed to script'
#===============================================================================
# check number of aruments passed to script
#===============================================================================
[ $# -gt 0 ] || usage "${WRONG_ARGS_ERR}"
#===============================================================================
# getopts check options passed to script
#===============================================================================
while getopts ':i:c:q:f:w:p:o:h' opt
do
case ${opt} in
i) input="${OPTARG}";;
c) compression="${OPTARG}";;
q) quality="${OPTARG}";;
f) framerate="${OPTARG}";;
w) width="${OPTARG}";;
p) preset="${OPTARG}";;
o) output="${OPTARG}";;
h) usage;;
\?) usage "${INVALID_OPT_ERR} ${OPTARG}" 1>&2;;
:) usage "${INVALID_OPT_ERR} ${OPTARG} ${REQ_ARG_ERR}" 1>&2;;
esac
done
shift $((OPTIND-1))
#===============================================================================
# variables
#===============================================================================
# input name
input_nopath="${input##*/}"
input_name="${input_nopath%.*}"
# defaults for variables if not defined
compression_default='4'
quality_default='80'
preset_default='none'
framerate_default='15'
width_default='600'
output_default="${input_name}.webp"
#===============================================================================
# ffmpeg webp animation function
#===============================================================================
animation () {
ffmpeg \
-hide_banner \
-stats -v panic \
-i "${input}" \
-c:v libwebp_anim \
-lossless 0 \
-compression_level "${compression:=${compression_default}}" \
-quality "${quality:=${quality_default}}" \
-cr_threshold 0 \
-cr_size 16 \
-preset "${preset:=${preset_default}}" \
-loop 1 \
-an -vsync 0 \
-vf "fps=fps=${framerate:=${framerate_default}},scale=${width:=${width_default}}:-1:flags=lanczos" \
"${output:=${output_default}}"
}
#===============================================================================
# run ffmpeg webp animation function
#===============================================================================
animation