pratikpatel8982 -
GaMEr_2077
Q)
how can I import my own Compressors in CIU??
A)This is quite simple, you just need to edit your arc.ini according to your needs.
When adding a new compressor you need :
Code:
The compressor itself.
packcmd and unpackcmd for compression and decompression.
The compressor name.
Correct parameters.
Example :
Code:
[External compressor:xtool]
header = 0
packcmd = xtool.exe precomp -mzstd -c32mb -t100p --dbase - - <stdin> <stdout>
unpackcmd = xtool.exe decode -t100p - - <stdin> <stdout>
Red - The compressor name.
Orange - Compressing and Decompressing commands.
Purple - Used for the archive Input and Output.
Blue - Parameters telling compressor to limit its usage.
Pink - Where the executable is located. You can add directories by using " and " such as "PRE\XTool\64\xtool.exe"
Please forgive any mistake regarding English or my Knowledge about Compression.