0323.html 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Converting PlayStation 1 Games Between Formats (cue/bin, pbp, chd)</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Retro Gaming,File Conversion,Format,Disc Image,CHD,Cue/Bin,PBP,Sony PlayStation,Emulation,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Converting PlayStation 1 Games Between Formats (cue/bin, pbp, chd)">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>Converting PlayStation 1 Games Between Formats (cue/bin, pbp, chd)</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <h2>Ripping Game Discs to .cue/.bin</h2>
  25. <ol>
  26. <li>Download ImgBurn <a href="https://www.imgburn.com/index.php?act=download" target="_blank">Download</a></li>
  27. <li>Install ImgBurn and launch it</li>
  28. <li>Insert the Playstation game into the disc drive</li>
  29. <li>Click the Create image file from disc option</li>
  30. <li>Click the folder icon under the Destination heading</li>
  31. <li>Set the destination path and change the Save as type dropdown to BIN</li>
  32. <li>Click the Read button to begin backing up the disc</li>
  33. </ol>
  34. <h2>Converting .cue/.bin to .pbp</h2>
  35. <ol>
  36. <li>Download&nbsp;PSX2PSP <a href="https://drive.google.com/file/d/1zECS3iE7tej1uc1nK4UBXrG-T_JQQw39/view?usp=sharing" target="_blank">Download</a></li>
  37. <li>Extract the downloaded .rar file</li>
  38. <li>Double click the Batch mode shortcut</li>
  39. <li>Set the Input directory to the directory containing the .cue/.bin image(s)</li>
  40. <li>Set the Output directory to a directory to save the created .pbp files</li>
  41. <li>Click the Convert button</li>
  42. </ol>
  43. <h2>Convert .cue/.bin to .chd</h2>
  44. <ol>
  45. <li>Download chdman <a href="https://drive.google.com/file/d/1_-ZhXmJnIteJNcKcX7LRU8T9zXeLWeL8/view?usp=sharing" target="_blank">Download</a></li>
  46. <li>Extract the downloaded .zip file</li>
  47. <li>Copy chdman.exe and&nbsp;cue2chd.bat to the location of the .cue/.bin file(s)</li>
  48. <li>Double click&nbsp;cue2chd.bat<br />
  49. to manually run the conversion open a command prompt to the location of chdman and execute the following command:
  50. <div class="codeBlock">chdman createcd -i &quot;input file.cue&quot; -o &quot;output file.chd&quot;</div>
  51. </li>
  52. </ol>
  53. <h2>Convert .chd to .cue/.bin</h2>
  54. <ol>
  55. <li>Download chdman <a href="https://drive.google.com/file/d/1_-ZhXmJnIteJNcKcX7LRU8T9zXeLWeL8/view?usp=sharing" target="_blank">Download</a></li>
  56. <li>Extract the downloaded .zip file</li>
  57. <li>Copy chdman.exe and&nbsp;chd2cue.bat to the location of the .cue/.bin file(s)</li>
  58. <li>Double click&nbsp;chd2cue.bat<br />
  59. to manually run the conversion open a command prompt to the location of chdman and execute the following command:
  60. <div class="codeBlock">chdman extractcd -i &quot;input file.chd&quot; -o &quot;output file.cue&quot;</div>
  61. </li>
  62. </ol>
  63. <h2>Converting .pbp to&nbsp;.cue/.bin</h2>
  64. <ol>
  65. <li>Download&nbsp;PSX2PSP <a href="https://drive.google.com/file/d/1zECS3iE7tej1uc1nK4UBXrG-T_JQQw39/view?usp=sharing" target="_blank">Download</a></li>
  66. <li>Extract the downloaded .rar file</li>
  67. <li>Double click the Batch mode shortcut</li>
  68. <li>Set the Input directory to the directory containing the .pbp files</li>
  69. <li>Set the Output directory to a directory to save the created&nbsp;.cue/.bin image(s)</li>
  70. <li>Click the Extract ISO button</li>
  71. <li>This process will convert the .pbp to .ccd/.img</li>
  72. <li>Download CDmage <a href="https://www.romhacking.net/utilities/1435/" target="_blank">Download</a></li>
  73. <li>Launch CDmage &gt; File &gt; Open</li>
  74. <li>Navigate to the location of the .ccd/.img image and select the .ccd file</li>
  75. <li>File &gt; Save As...</li>
  76. <li>Click Save</li>
  77. <li>Click OK</li>
  78. </ol>
  79. </div>
  80. </div>
  81. </body>
  82. </html>