Page 4 of 4

Re: MKPSXISO - A PlayStation ISO Maker to Replace BUILDCD

Posted: July 28th, 2020, 4:31 am
by Administrator
License your game as SCEI (Japanese). All PlayStation's can boot Japanese licensed discs.

Re: MKPSXISO - A PlayStation ISO Maker to Replace BUILDCD

Posted: March 6th, 2022, 9:09 pm
by MottZilla
I was wondering why MKPSXISO complains about files not being a multiple of 2048 bytes? The old BUILDCD program doesn't have a problem with it. I didn't see any option to bypass or ignore these warnings or errors.

Re: MKPSXISO - A PlayStation ISO Maker to Replace BUILDCD

Posted: March 6th, 2022, 11:02 pm
by Administrator
MottZilla wrote: March 6th, 2022, 9:09 pm I was wondering why MKPSXISO complains about files not being a multiple of 2048 bytes? The old BUILDCD program doesn't have a problem with it. I didn't see any option to bypass or ignore these warnings or errors.
BUILDCD might be patching them out to 2048 bytes automatically by adding nulls at the end of the file to match the sector length. Not entirely sure on that though.

Re: MKPSXISO - A PlayStation ISO Maker to Replace BUILDCD

Posted: March 7th, 2022, 6:39 am
by MottZilla
I checked and in the ISOs that BUILDCD creates, the file size in the directory listing is not padded to a multiple of 2048. Ofcourse when the files are put into sectors a file can only start at the beginning of a sector so anything that is not a multiple of 2048 will waste some space at the end of the last sector it uses.

Basically I'm just wondering if MKPSXISO could easily be altered to do the same thing. If it weren't for that issue it does seem faster than building my ISO with the older tools. And I like that it supports FLAC for audio tracks.

Re: MKPSXISO - A PlayStation ISO Maker to Replace BUILDCD

Posted: March 7th, 2022, 9:16 am
by MottZilla
I figured out what I was doing wrong. The XML I copy pasted together had the files' type as "mixed" instead of "data". After correcting that, no problems.

Re: MKPSXISO - A PlayStation ISO Maker to Replace BUILDCD

Posted: July 28th, 2023, 1:34 pm
by MsULTIMATEMAX
I've done some batch codes.

Bin_Dump_Extract

Code: Select all

cd %~dp0
for %%i in (*.bin) do start /wait dumpsxiso.exe -x "%%~ni\Extracted" -s "%%~ni\XMLFile.xml" "%%~ni.bin"
pause
Bin_Make_Image

Code: Select all

cd %~dp0
for %%i in (*.bin) do start /wait mkpsxiso.exe -y -o "%%~ni\%%~ni_NewImage.bin" -c "%%~ni\%%~ni_NewImage.cue" "%%~ni\XMLFile.xml"
pause