View Full Version : Help Compressing DOA5LR !
Hi , I tried to compress this game but it seems I can't get it less than 8 GB
Dead or alive 5 last round + DLCs v1.4 [ Original Game + update 1.4 = 9.5 GB ]
No Zlib was detected so i thought srep+lzma will do something but only 8.18 GB
I'm using Srep with 1GB dictionary + XZ with 300MB dictionary
:D any ideas ?
Game resources are encrypted + compressed. So to compress it good you have to decrypt/uncompress them before. AFAIK there no good tools for rebuilding data for DOA (while you can extract most files), so...
So i guess winrar is my ally this time :D
So i guess winrar is my ally this time :D
For such cases I'd use ZSTD.
For such cases I'd use ZSTD.
Srep+lzma gave me better ratio than zstd even with other lzma
Srep+lzma gave me better ratio than zstd even with other lzma
with the newest zstd version, there are around 19 levels, and additional 3 more levels, and i think you tested previous version or low level for compression and chunk size also matters :D
EDIT: You should try srep+zstd and zstd should be set at level 19, download the latest zstd from my attachment ;) and use cmdinfo by felice for the info about the use of it :)
with the newest zstd version, there are around 19 levels, and additional 3 more levels, and i think you tested previous version or low level for compression and chunk size also matters :D
EDIT: You should try srep+zstd and zstd should be set at level 19, download the latest zstd from my attachment ;) and use cmdinfo by felice for the info about the use of it :)
I tested level 19 :D However it took much time to complete a single 400 MB File & still srep+lzma better in ratio & speed
I tested level 19 :D However it took much time to complete a single 400 MB File & still srep+lzma better in ratio & speed
Did you compared using srep+zstd or just zstd, try with srep+zstd if you didn't done that!
Did you compared using srep+zstd or just zstd, try with srep+zstd if you didn't done that!
yes i did that
72,966,144 => 28,393,926 bytes. Ratio 38.9% srep+Zstd [level 19]
72,966,144 => 24,839,507 bytes. Ratio 34.0% srep+lzma [max]
I tested on link file from DOA5LR :o
yes i did that
72,966,144 => 28,393,926 bytes. Ratio 38.9% srep+Zstd [level 19]
72,966,144 => 24,839,507 bytes. Ratio 34.0% srep+lzma [max]
I tested on link file from DOA5LR :o
Bro, if you see other settings of zstd and configs, then zstd could make compression same or even less in most condition, there chunk size also matter, like for lzma, you set it for max but in zstd, u used simple way, and that why 4mb difference you see!
I am using these settings below and get around ~8.25gb :
DATA , DATA2 , DLC folder > msc+srep64+xz
Movie > srep64+xz (Ratio 94.90)
All rest files in Install folder > msc+srep64+dispack070+xz (Ratio 79.04)
So Try urself !
Aswadd ! Can u help me in one thing ?
I need to know, how to compress only list files written in text file .
So the compression will be there only selected files written in text file.
Like this method :
arc a -di -i1 -ep1 -ed -r -w. \
[email protected] outputfile.bin -mmethod "input\*"
correct me and please tell me, Is there need to write the full path or only install path of folder have to write in text file ?
I am using these settings below and get around ~8.25gb :
DATA , DATA2 , DLC folder > msc+srep64+xz
Movie > srep64+xz (Ratio 94.90)
All rest files in Install folder > msc+srep64+dispack070+xz (Ratio 79.04)
So Try urself !
Winrar Max settings = 8.7 GB :D:D I think it's good compared to the time & ratio of others :D:D
why did u use msc ?? I it's useless it won't make any change to videos :confused::confused:
also why dispack070 ?? I reached around 8.18 GB with only srep+Lzma max / srep + xz with huge dictionary about 8.1 GB :D no need other tools , also msc didn't help me :\
Aswadd ! Can u help me in one thing ?
I need to know, how to compress only list files written in text file .
So the compression will be there only selected files written in text file.
Like this method :
arc a -di -i1 -ep1 -ed -r -w. \
[email protected] outputfile.bin -mmethod "input\*"
correct me and please tell me, Is there need to write the full path or only install path of folder have to write in text file ?can give an example for what u need to do ??
also try this command to compress only files with certain extension
EX :
dir /s /b *.bin |precomp043 -intense0 -cn "{}"
other thing if you want to import from text file / output of program Just use [For /f command]
can give an example for what u need to do ??
also try this command to compress only files with certain extension
EX :
dir /s /b *.bin |precomp043 -intense0 -cn "{}"
other thing if you want to import from text file / output of program Just use [For /f command]
Don't understand Bud .
Do u mean dir /f ? for using text file ?
Give e.g with attachment below :confused:
I want to compress files written in text file.
Winrar Max settings = 8.7 GB :D:D I think it's good compared to the time & ratio of others :D:D
why did u use msc ?? I it's useless it won't make any change to videos :confused::confused:
also why dispack070 ?? I reached around 8.18 GB with only srep+Lzma max / srep + xz with huge dictionary about 8.1 GB :D no need other tools , also msc didn't help me :\
MSC worked on .ink files on most files and total compression of the whole game took only ~2 hours for me. Not bad I think. And Installation took ~6 min or less if nothing run anything on pc .
Don't understand Bud .
Do u mean dir /f ? for using text file ?
Give e.g with attachment below :confused:
I want to compress files written in text file.
do you want arc to compress all files and make them in one archive ?? or each file has his own archive ??
do you want arc to compress all files and make them in one archive ?? or each file has his own archive ??
I want all files in one archive written in text file.
I want all files in one archive written in text file.
ok the idea will be that you will copy / move all files you want in new directory then using arc to compress the hole folder :D
if you will run from bat file use this
for /f "delims=" %%I in (paths.txt) do copy "%%I" "C:\folder_to_compress_with_arc"
if you will run from cmd use this
for /f "delims=" %I in (paths.txt) do copy "%I" "C:\folder_to_compress_with_arc"
it will take all files paths from path.txt file & copy / move it to new directory "C:\folder_to_compress_with_arc" then you can compress it using arc
ok the idea will be that you will copy / move all files you want in new directory then using arc to compress the hole folder :D
if you will run from bat file use this
for /f "delims=" %%I in (paths.txt) do copy "%%I" "C:\folder_to_compress_with_arc"
if you will run from cmd use this
for /f "delims=" %I in (paths.txt) do copy "%I" "C:\folder_to_compress_with_arc"
it will take all files paths from path.txt file & copy / move it to new directory "C:\folder_to_compress_with_arc" then you can compress it using arc
Thanks aswadd :D I m using this for alternate files AND I also figure out also which i want is : arc a -ma9 -ds -lc1024 -ld1024 -di -i1 -ep1 -ed -r -w.\temp
[email protected] Data\arc.bin -mmethod "Directory\*"
One thing more aswadd that if i want to exclude that list.txt then what to do :rolleyes:
Use
[email protected]
It's Working Thanks Prince:D
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.