Skip to content

Commit 71d5b81

Browse files
authored
Add graph
1 parent 3b1c513 commit 71d5b81

1 file changed

Lines changed: 29 additions & 2 deletions

File tree

README.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,34 @@
22

33
**XboxKit** losslessly converts between Xbox & Xbox 360 DVD image file formats. It supports Redump ISOs, XISO ([XDVDFS](https://multimedia.cx/xdvdfs.html) ISO) images of the game partition, video ISO (DVD-Video format) images of the video partition, extracted random filler padding data, XGD1 filler seeds, system update files (from XGD3 video ISOs), XDVDFS skeletons, and ZAR ([ZArchive](https://github.com/Exzap/ZArchive)) files.
44

5-
### Command-line help text
5+
```mermaid
6+
graph LR
7+
A[Redump ISO]
8+
P[XDVDFS\nSkeleton]
9+
T[Trimmed XISO]
10+
U[System\nUpdate]
11+
V[Video ISO]
12+
W[Wiped XISO]
13+
Z[ZArchive]
14+
subgraph X [XDVDFS ISO]
15+
XISO(Raw XISO)
16+
XISO -->|--trim| T
17+
end
18+
subgraph F [Filler Data]
19+
R(Random Filler)
20+
S(XGD1 Seed)
21+
end
22+
A -->|--video| V
23+
V -->|--update| U
24+
A -->|--xiso| X
25+
X -->|--random| R
26+
X -->|--seed| S
27+
X -->|--wipe| W
28+
W -->|--petrify| P
29+
W -->|--zar| Z
30+
```
31+
32+
## Command-line help text
633

734
```
835
Usage: xboxkit.exe [options] <input.iso> [files]
@@ -26,7 +53,7 @@ Extract mode: Use one or more options (splits input file)
2653

2754
**Note**: Extracting the system update (su20076000_00000000) is useful for XGD3 discs as deduplication of the XGD3 video ISOs is not possible unlike XGD1/XGD2 (the video partition is unique for each XGD3 disc). When extracting the update, XboxKit zeroes the update file within the video ISO so that it becomes highly compressible (deduplication of the system update file is then possible across multiple XGD3 disc images). XboxKit will ignore the `-u` option when used with XGD1/XGD2 inputs, as they do not have system update files in the video partition.
2855

29-
### Example usage
56+
## Example usage
3057

3158
For lossless conversion from a redump ISO to an XISO, run:
3259
`./xboxkit.exe -a game.iso`

0 commit comments

Comments
 (0)