View Single Post
  #56  
Old 30-12-2016, 03:54
zouzouni zouzouni is offline
Registered User
 
Join Date: Aug 2016
Location: France
Posts: 18
Thanks: 10
Thanked 24 Times in 10 Posts
zouzouni is on a distinguished road
Quote:
Originally Posted by shazzla View Post
I had no information about PZlib V3 was not supported. Thanks,but in this case another problem :
ISDONE :

[External compressorzlib]
header = 0
packcmd = pzlib e -v - -o - <stdin> <stdout>
unpackcmd = pzlib d - -o - <stdin> <stdout>

pzlib3hotfix.exe ,both dlls and arc.ini included...
error : unsupported compression method pzlib
unarc.dll returned an error code : -2

i dont understand.
and where can i get new information about PZlib ? Is this the only place ?


Did you encode using pzlib v3 along with the 2 optionnal Dlls ... if so you need then in decompression folder and you need to add exctraction commands in INNO....

PZLIB+DLLS at comp and decomp ...otherwise it will give you an error!

your arc.ini is ok for decomp, don't change it ; ) ... but -v at comp is from previous pzlib version ...

you need something like that : packcmd = pZLib e -m2 -x -r9 -t4 - -o - <stdin> <stdout> to use pzlib v3 with dlls
-t4 = 4 cores
-x = ultra setting
-r9 = processing level ( from 1 to 9 ; 0 for automatic)

and for unpacking: unpackcmd = pZLib d -t8 - -o - <stdin> <stdout> (it will use up to 8 cores for decomp if available)

Last edited by zouzouni; 30-12-2016 at 04:02.
Reply With Quote