Berion
Developer
@GuilloteTesla Not sure how use it now. ^^
- - -
Practice examples of usage @vetzki script.
Are You fine if I will add some print info and app name like example "Chunker" (or whatever fit You best!) and add it to psx-place resources? It is really cool and handy app.
@haxxxen
- - -
Practice examples of usage @vetzki script.
Are You fine if I will add some print info and app name like example "Chunker" (or whatever fit You best!) and add it to psx-place resources? It is really cool and handy app.
Code:
#!/bin/bash
# =================================================================================
# = RAW-to-XA =
# =================================================================================
# This script converting RAW disc images (2352 block size) to XA (2336 block size).
# Place "raw.bin" in the same dir with Chunker and script.
# Remember to also change defined blocks size inside *.cue file!
python3 Chunker.py -i raw.bin -o xa.bin -os 16 -cs 2352 -es 2336
Code:
#!/bin/bash
# =================================================================================
# = VM2-to-BIN =
# =================================================================================
# This script converting PS2 Memory Card dumps with ECC to dumps without ECC.
# Place "card.vm2" in the same dir with Chunker and script.
python3 Chunker.py -i card.vm2 -o card.bin -os 0-cs 528 -es 512
@haxxxen