-
Let's be direct: I want a downloaded gallery from nhentai.net to be zipped in cbz (basically zip) file format. As it get zipped, the original images get deleted. There is a configuration about it, but I'm not sure I was doing it right... Update: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Newer galleries on nhentai are all #!/bin/bash
for file in "$1"/*.webp; do
magick "$file" "${file%.*}.png"
done
zip -0 "$(dirname "$1")"/"$(basename "$1")".cbz "$1"/*.png
rm -r -- "$1" |
Beta Was this translation helpful? Give feedback.
--cbz
on command-line or"postprocessors": [{"name": "zip", "extension": "cbz"}]
in a config file.Newer galleries on nhentai are all
.webp
. Convert and zip them yourself, or run a script with anexec
post processor.