#1
|
||||
|
||||
Advanced Compressor (Nanozip)
Intro Nanozip
Nanozip is by the far the program that i still try to figure out, the reason follows in the diagram below. as you can see it features many switches that manipulate different algos Options Alg --------- ---- -cf LZP = fast comp/decomp -cF LZP = fast comp/decomp improved -cd lz77 = pretty tight comp very close to lzma if not identical -cD lz77 = pretty tight comp very close to lzma improved -cdP lz77 = parallel comp identical to xz method i originally posted in the forum -cDP lz77 = parallel comp identical to xz method improved -co BWT = best compression with fastest decom -cO BWT = best compression with fastest decom imporved -cc CM = *Ultimate Compression* extremely slow Positives: 1) It has better ratio over lzma example: i compressed MGS V into 11.7G without reflate and with precomp set to intense overall it took 5~6 hours to compress and 1 and a half hours to decompress 2) It can be used atop of lzma algo YES you can do lzma and then nz on top :P 3) It takes less ram to Compress you can get better ratio than lzma with 2G dictionary 4) Supports multicore systems in both comp/decomp 5) Can be used with masked compression for greater results Negatives: 1) It takes the same amount of ram to decomp as it takes to compress 2) its decomp speed is around 10m/sec in -cc and arund 50m/sec in -cO you will lose some ratio but its worth with that speed 3) it's progress cannot be seen in Inno though it works flawlessly 4) it lucks stdin and stdout
__________________
My projects : Masked Compression, lzma2(xz) on Freearc, Zstd compressor for windows My optimizations : packjpg.exe, zstd, lzham, precomp-dev-0.45. |
The Following 11 Users Say Thank You to panker1992 For This Useful Post: | ||
ADMIRAL (04-05-2020), arkantos7 (30-12-2015), EzzEldin16 (26-09-2017), felice2011 (29-12-2015), kenzo34 (29-12-2015), Lucas65 (29-12-2015), NickX700K (21-01-2019), ScOOt3r (11-12-2021), Simorq (29-12-2015), Stor31 (29-12-2015), yasserdivar (21-10-2021) |
Sponsored Links |
#2
|
||||
|
||||
Oh look, panker discover nanozip congrats panker. Ccm algo have better compression ratio than lzma with speed cost. The creator of nanozip take ccm algo and he make the best optimization for the algo but nanozip is close source. He take the source to the grave.
|
#3
|
||||
|
||||
in ASC, I somehow made it possible to show decompression progress of nanozip and other compressors like bcm. For now it is not perfected.
|
The Following User Says Thank You to Razor12911 For This Useful Post: | ||
panker1992 (15-01-2016) |
#4
|
||||
|
||||
well i didnt discover anything, this post isnt about discovery at all.
its an addition to my original Masked Compression project that i indeed discover along with xz. Nanozip may be a closed source and slow along the way but if you mask it you may get pretty nice results @razor i use Kurutsu's source are they different from yours in progressbar?? how can i implement it ?
__________________
My projects : Masked Compression, lzma2(xz) on Freearc, Zstd compressor for windows My optimizations : packjpg.exe, zstd, lzham, precomp-dev-0.45. |
#5
|
||||
|
||||
Kurutsu's source?
|
#6
|
||||
|
||||
kurutsu blackbox Inno setup 1.8 how come you havent seen that before ?? :/
__________________
My projects : Masked Compression, lzma2(xz) on Freearc, Zstd compressor for windows My optimizations : packjpg.exe, zstd, lzham, precomp-dev-0.45. |
#7
|
||||
|
||||
Oh that, I have seen it but I haven't used it in a while, maybe last used it 2-3 years ago. I just forgot about it, I don't know if compatible but asc isn't built using inno setup like the bb script is. So far it works with bcm compressor, will just have to post pic to show you what I mean.
|
#8
|
||||
|
||||
Razor as you can see my GUI-coding skills are novice,
i am trying to bring my projects to Bilawal's RG script and your ASC project but i cannot make them work without archive.ini file have problems making your program to read my data.bin file :/
__________________
My projects : Masked Compression, lzma2(xz) on Freearc, Zstd compressor for windows My optimizations : packjpg.exe, zstd, lzham, precomp-dev-0.45. |
#9
|
||||
|
||||
hello panker 1992
thank you for your work we do not see in advance progress bar of zpaq in inno also with kurutsu blackbox Inno setup 1.8 thank you for your tools |
The Following User Says Thank You to kenzo34 For This Useful Post: | ||
panker1992 (29-12-2015) |
#10
|
||||
|
||||
Kenzo yes this is right, you dont get to see zpaq but usually text files that zpaq compresses, decompress in an instance you only feel a moment of freeze nothing else
Here we are talking about an entire 20 maybe 30 gigs of game :P the amount of time that it need in cm algo is freaky
__________________
My projects : Masked Compression, lzma2(xz) on Freearc, Zstd compressor for windows My optimizations : packjpg.exe, zstd, lzham, precomp-dev-0.45. |
#11
|
||||
|
||||
Nanozip is the best compressor #1 in the world of compression. Cmix0.6 use ccm and is a little faster than nz but you know compression ratio cost.btw nice info about nanozip panker. Pd: LOL is kurutucu
__________________
-the science of the useless- |
The Following User Says Thank You to gozarck For This Useful Post: | ||
panker1992 (29-12-2015) |
#12
|
||||
|
||||
and the funny thing is that i have used his script for 2+ years
i like nanozip because it has many algorithms inside it, took me a long nighter to optimize the thing :P with masks you can use it in different styles example a) [External compressor:nzf] ;nzf = stands for fast packcmd = nz a -r -v -cO -m4g -t0 -br128m -bw128m -p2 $$arcpackedfile$$.tmp.nz $$arcdatafile$$.tmp unpackcmd = nz x -m1400m -t0 -p0 $$arcpackedfile$$.tmp.nz $$arcdatafile$$.tmp datafile = $$arcdatafile$$.tmp packedfile = $$arcpackedfile$$.tmp.nz b) [External compressor:nzs] ;nzs = stands for slow packcmd = nz a -r -v -cc -m6g -t0 -br128m -bw128m -p2 $$arcpackedfile$$.tmp.nz $$arcdatafile$$.tmp unpackcmd = nz x -m1400m -t0 -p0 $$arcpackedfile$$.tmp.nz $$arcdatafile$$.tmp datafile = $$arcdatafile$$.tmp packedfile = $$arcpackedfile$$.tmp.nz and then use mask to compress text with nzs for ultimate compression and nzf for fast data PS: but i wonder how long till they find out themselves
__________________
My projects : Masked Compression, lzma2(xz) on Freearc, Zstd compressor for windows My optimizations : packjpg.exe, zstd, lzham, precomp-dev-0.45. |
The Following User Says Thank You to panker1992 For This Useful Post: | ||
RamiroCruzo (29-12-2015) |
#13
|
||||
|
||||
I don't get what up with the masks word???
__________________
We are such stuff as dreams are made on, and our little life is rounded with a sleep. |
The Following User Says Thank You to RamiroCruzo For This Useful Post: | ||
panker1992 (29-12-2015) |
#14
|
||||
|
||||
Ramiro i havent had the time to give a full scale tutorial about it yet :/ i was really busy to make a inno setup for it
send me an inbox and i will tell you about it in a few words
__________________
My projects : Masked Compression, lzma2(xz) on Freearc, Zstd compressor for windows My optimizations : packjpg.exe, zstd, lzham, precomp-dev-0.45. |
#15
|
||||
|
||||
Hi all, just stumbled across nanozip after seeing it used in various repacks, how does it compare to "lolz"? Are there general advantages/disadvantages or are the benefits/downsides situational? I mostly use "lolz", but sometimes use "lzma" (when beneficial) as a final compressor, but I haven't the foggiest idea what nanozip actually is or how it works.
|
Tags |
masks, nanozip |
Thread Tools | |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Tom Clancy's Ghost Recon Advanced Warfighter 2 1xDVD5 CIUv2 | pakrat2k2 | PC Games - CD/DVD Conversions | 0 | 06-06-2015 11:46 |
Ghost Recon Advanced Warfighter v1.35 crack | A7xtitan | PC Games | 6 | 03-12-2010 11:58 |
Ghost Recon Advanced Warfighter 1.3 problems | neophile | PC Games | 11 | 25-10-2006 03:44 |
HD Advanced ONLINE | spid3r | PS2 Games | 2 | 11-07-2005 15:07 |
Advanced MP3 Catalog Pro 2.00 released | Wizetech | Media Software | 0 | 12-03-2002 07:50 |