Open francisdb opened 1 month ago
➜ images find . -type f | sed -n 's/.*\.//p' | sort -u
exr
hdr
jpg
png
webp
cd "Johnny Mnemonic (Williams 1995) VPW v1.2/images"
for file in *.exr *.webp *.png *.jpg *.hdr; do
if [[ $(basename "$file") != colorgradelut* ]]; then
magick "$file" -resize 25% "$file"
else
echo "skipping $file"
fi
done
Probably do a percentage scale for everything over a threshold?
LUT images can't be touched. Those are 256x16 in size. See also #381