A simple command-line tool that converts EPUB files to CBZ
- Go 97.1%
- Makefile 2.9%
| .forgejo/workflows | ||
| assets | ||
| cbz | ||
| epub | ||
| samples | ||
| .gitignore | ||
| convert.go | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| main.go | ||
| Makefile | ||
| README.md | ||
| unzip.go | ||
| usage.go | ||
epub2cbz
A simple command-line tool that converts EPUB files to CBZ.
Usage
epub2cbz [options] <input.epub>
Arguments
input.epub: Path to the input EPUB file
Options
--output/-o<file>: Output CBZ file path--series/-s<name>: Custom series name in CBZ metadata--help/-h: Show this help message
Examples
epub2cbz book.epub -o converted_book.cbz -s Book
epub2cbz book.epub --series Book
epub2cbz book.epub --output converted.cbz
Installation
Debian
sudo curl https://git.oriondev.fr/api/packages/orion/debian/repository.key -o /etc/apt/keyrings/forgejo-orion.asc
echo "deb [signed-by=/etc/apt/keyrings/forgejo-orion.asc] https://git.oriondev.fr/api/packages/orion/debian stable main" | sudo tee -a /etc/apt/sources.list.d/forgejo.list
sudo apt update
sudo apt install epub2cbz
Other (Go needed)
git clone https://git.oriondev.fr/orion/epub2cbz.git
cd epub2cbz
make build
cp bin/epub2cbz /usr/bin
License & Credits
This project uses MIT License.
This project contains also samples from the International Digital Publishing Forum, from here.