A simple command-line tool that converts EPUB files to CBZ
  • Go 97.1%
  • Makefile 2.9%
Find a file
2026-04-04 15:46:31 +02:00
.forgejo/workflows fix(workflow): for each architecture 2026-04-04 15:26:34 +02:00
assets chore(debian): reset version 2026-04-04 15:29:49 +02:00
cbz feat: CLI handling 2026-04-04 02:10:24 +02:00
epub feat: metadata generation begin 2026-04-01 00:07:13 +02:00
samples chore: use another samples 2026-03-30 23:07:08 +02:00
.gitignore feat(workflow): multiple architecture 2026-04-04 14:17:09 +02:00
convert.go feat: error handling and some message in addition 2026-04-04 02:47:41 +02:00
go.mod feat: CLI handling 2026-04-04 02:10:24 +02:00
go.sum feat: CLI handling 2026-04-04 02:10:24 +02:00
LICENSE chore: initial commit 2026-03-29 23:25:19 +02:00
main.go feat: error handling and some message in addition 2026-04-04 02:47:41 +02:00
Makefile feat(workflow): multiple architecture 2026-04-04 14:17:09 +02:00
README.md chore(readme): mit link markdown 2026-04-04 15:46:31 +02:00
unzip.go feat: error handling and some message in addition 2026-04-04 02:47:41 +02:00
usage.go fix: remove arg to --help in usage message 2026-04-04 02:36:20 +02:00

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.