https://github.com/simon987/cbr2cbz
Yet another cbr to cbz converter
https://github.com/simon987/cbr2cbz
Last synced: 8 months ago
JSON representation
Yet another cbr to cbz converter
- Host: GitHub
- URL: https://github.com/simon987/cbr2cbz
- Owner: simon987
- License: lgpl-3.0
- Created: 2020-02-22T17:40:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-22T17:59:55.000Z (over 6 years ago)
- Last Synced: 2025-04-04T09:45:07.841Z (about 1 year ago)
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cbr2cbz

[/statusIcon)](https://files.simon987.net/artifacts/Cbr2cbz/Build/)
Convert a .cbr file to a .cbz file without modifying the original document.
## Usage
```bash
cbr2cbz file1.cbr file2.cbr ...
```
**Convert all files in a directory**
```bash
cbr2cbz /path/to/comics/*.cbr
cbr2cbz /path/to/comics/**/*.cbr
```
**Convert all files in a directory (multithreaded)**
```bash
find /path/to/comics/ -name '*.cbr' | parallel -j4 cbr2cbz {}
```
## Build from source
```bash
cmake .
make
```