init
This commit is contained in:
commit
81b7baeac7
61 changed files with 281 additions and 0 deletions
6
photography/convert.sh
Executable file
6
photography/convert.sh
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
for f in *.jpg *.JPG *.JPEG *.png; do
|
||||
[ -e "$f" ] || continue # skip if no match
|
||||
avifenc --min 30 --max 40 "$f" "images/${f%.*}.avif"
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue