Skip to content

Instantly share code, notes, and snippets.

@rhysforyou
Last active August 19, 2017 17:07
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rhysforyou/8e396099831aa44086af to your computer and use it in GitHub Desktop.
Save rhysforyou/8e396099831aa44086af to your computer and use it in GitHub Desktop.
Ripping PS1 Games on OS X

Note: This method doesn't work for multitrack game disks that I've tried, such as those that include audio files on separate tracks like Vib Ribbon.

Also don't go using this method to distribute copies of PS1 games on the internet. That's super illegal and uncool.

  1. Insert the game disk, wait for it to mount
  2. Open Disk Utility, right click the game disk, and choose Unmount
  3. Open Terminal and run diskutil list, make note of where the game disk was mounted (something like /dev/disk3)
  4. Run sudo dd if=<disk> of=foo.iso where <disk> is the mount point we got in the last step (you can call the ISO whatever you want)
  5. Download LiquidCD and extract it
  6. Open LiquidCD, go to the Others tab, and then click Choose a disk image… supplying the disk image you made last step, if asked, let it analyse the tracks in that ISO
  7. Click the gear icon in the bottom left and choose Save as Disk Image…
  8. Choose bin/cue from the format dropdown and save it wherever

You can add those files to your library in OpenEmu, or load the CUE file with something like PCSXR to run them on your own machine.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment