Skip to content
lixicus edited this page Feb 19, 2025 · 22 revisions

CDMage

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

CHDMan

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.

CHDMan Download

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

Clone this wiki locally