-
Notifications
You must be signed in to change notification settings - Fork 0
Tools
lixicus edited this page Feb 19, 2025
·
22 revisions
CDMage is a useful program to use if (for some reason) you don't want to use CHD files but want single bin/cue files for your disc based games. The program has more usages such as extracting files from a game.
Simply Load Cue > File > Save As > (Don't change track modes) Ok
CHD is a compressed file format. It can be used for various emulators and is quite useful to save on space. You can use CHDMan to convert your bin/cue, bin/gdi, or iso files to chd.
CUE/GDI/ISO to CHD (Standard)
for /r %%i in (*.cue, *.gdi, *.iso) do chdman createcd -i "%%i" -o "%%~ni.chd"
If for some reason you're getting a performance hit using chd try this instead:
CUE/GDI/ISO to CHD (disabled LZMA) for /r %%i in (*.cue, *.gdi, *.iso) do chdman createcd -i "%%i" -o "%%~ni.chd" -c cdzl,cdfl
Definitive Playstation Classic Mini Wiki - 2025