Psx Chd Now
If you’ve been collecting PlayStation 1 (PSX/PS1) ROMs for any length of time, you know two things: the library is legendary, and the files take up way too much space.
Place chdman.exe in the folder with your .cue files. Run this: psx chd
for /r %i in (*.cue) do chdman createcd -i "%i" -o "%~ni.chd" If you’ve been collecting PlayStation 1 (PSX/PS1) ROMs
Unlike zipping a .bin file (which most emulators can’t read), CHD is a compression format. psx chd
for i in *.cue; do chdman createcd -i "$i" -o "$i%.cue.chd"; done