Ripping Games: Difference between revisions

→‎Joining Split Files: Copyedit; don't use "*.part*.iso" as that'll cause issues if there are multiple games that need to be joined
m (→‎Wii/vWii Internal Storage: Fixed minor mistake (...that were created inDolphin...) --> (...that were created in Dolphin...))
(→‎Joining Split Files: Copyedit; don't use "*.part*.iso" as that'll cause issues if there are multiple games that need to be joined)
Line 20: Line 20:


=== Joining Split Files ===
=== Joining Split Files ===
Disc image in split parts will need to join before dolphin can read it. A simple command from command prompt and terminal can do it! Use the example command for your system. Use the "cd" command to change directory to the files location. The example command is assumed on CleanRip's "GAMEID.part#.iso" filename nomenclature.
A disc image in split parts will need to be joined before dolphin can read it. A simple command from command prompt and terminal can do it! Use the example command for your system. Use the "cd" command to change directory to the file's location. The example command assumes CleanRip's "GAMEID.part#.iso" filename nomenclature, and creates "GAMEID.iso".  The part files can be deleted after the joined file is created.


{|
{|
Line 26: Line 26:
| width="50%"|
| width="50%"|
'''Windows'''
'''Windows'''
<pre>cd &lt;directory&gt;
<pre><nowiki>cd <directory>
copy /b *.part?.iso fulliso.iso</pre>
copy /b GAMEID.part?.iso GAMEID.iso</nowiki></pre>
| width="50%"|
| width="50%"|
'''Linux / macOS'''
'''Linux / macOS'''
<pre>cd &lt;directory&gt;
<pre><nowiki>cd <directory>
cat *.part*.iso &gt; fulliso.iso</pre>
cat GAMEID.part*.iso &gt; GAMEID.iso</nowiki></pre>
|}
|}