Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #46  
Old 14-09-2020, 09:21
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
for cls-mtx:

[External compressor:bcm]
header = 0
packcmd = Res\Bcm compressor\{compressor} -9 $$arcdatafile$$.tmp $$arcpackedfile$$.tmp[/CODE]
I understand what you said, but it would be useful to be able to use it as used in arc.ini for other compressors that do not use CLS-MTX.dll.

Currently in CIU it uses this configuration mode that allows the user to inform the command in more than one way.
Code:
[External compressor:rz,RZ,razor,RAZOR]
header    = 0
packcmd   = "RAZOR\RZ_x64" a -y -d {option} $stdio$ <stdin> <stdout>
unpackcmd = "RAZOR\RZ_x64" e -y $stdio$ <stdin> <stdout>
For 32-bit version the executables are "RZ_x86.exe"

If possible, it would be very useful to be able to configure this way (in the next update of CLS-MTX.dll).
It also needed to allow the use of compressors without the CLS-MTX, such as using for mtx: [External compressor: mtxrz, mtxrazor, mtx_razor, mtx_rz]
and for RAZOR norml to use [External compressor:rz,RZ,razor,RAZOR]
This same name variation would be used for other executables like mpzapi and perhaps some others.
Reply With Quote
Sponsored Links
  #47  
Old 14-09-2020, 10:04
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by Cesar82 View Post
I understand what you said, but it would be useful to be able to use it as used in arc.ini for other compressors that do not use CLS-MTX.dll.

Currently in CIU it uses this configuration mode that allows the user to inform the command in more than one way.
Code:
[External compressor:rz,RZ,razor,RAZOR]
header    = 0
packcmd   = "RAZOR\RZ_x64" a -y -d {option} $stdio$ <stdin> <stdout>
unpackcmd = "RAZOR\RZ_x64" e -y $stdio$ <stdin> <stdout>
For 32-bit version the executables are "RZ_x86.exe"

If possible, it would be very useful to be able to configure this way (in the next update of CLS-MTX.dll).
It also needed to allow the use of compressors without the CLS-MTX, such as using for mtx: [External compressor: mtxrz, mtxrazor, mtx_razor, mtx_rz]
and for RAZOR norml to use [External compressor:rz,RZ,razor,RAZOR]
This same name variation would be used for other executables like mpzapi and perhaps some others.

all right then. i'm working on it.

(i've a few exams in the coming days. so it may not be quick. )
Reply With Quote
The Following User Says Thank You to BLACKFIRE69 For This Useful Post:
Cesar82 (14-09-2020)
  #48  
Old 14-09-2020, 16:38
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
cls- mtx Update

cls- mtx Update v2.0.0.5




New update for "cls-mtx".




What's New:
  • "{Compressor}" is no longer required.
  • Can use more than one name.
  • Known issues have been resolved.
  • Please use (") for directories with spaces.


New Arc.ini (or any config.ini):

Code:
[External compressor:mtx_rz, mtx_razor, mtxrz]
header    = 0
packcmd   = "Res\Rz Compressor\rz64.exe" a -d 128m $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
unpackcmd = "Res\Rz Compressor\rz64.exe" e -y $$arcpackedfile$$.tmp $$arcdatafile$$.tmp

Inputs: (that supports)
Code:
1. $$arcdatafile$$.tmp
2. <stdin>

Outputs: (that supports)
Code:
1. $$arcpackedfile$$.tmp
2. <stdout>

Last edited by BLACKFIRE69; 16-09-2020 at 06:43.
Reply With Quote
The Following User Says Thank You to BLACKFIRE69 For This Useful Post:
Cesar82 (15-09-2020)
  #49  
Old 15-09-2020, 10:34
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
@BLACKFIRE69

I have messaged you my setup, I copied the line from your SetIniString example but it does not work.

Maybe a second pair of eyes to look could really help.

It's on line 1950
Reply With Quote
  #50  
Old 15-09-2020, 13:03
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by Masquerade View Post
@BLACKFIRE69

I have messaged you my setup, I copied the line from your SetIniString example but it does not work.

Maybe a second pair of eyes to look could really help.

It's on line 1950
ok, check the inbox.
Reply With Quote
  #51  
Old 16-09-2020, 06:43
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Talking cls-mtx New Update

cls-mtx New Update v2.0.0.6




What's New:
  • Some improvements.
  • Minor issues fixed.
  • Not case sensitive as before.



and i was able to reduce the final size from "191 kb" to "100 kb".


_

Last edited by BLACKFIRE69; 27-09-2020 at 10:27.
Reply With Quote
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post:
Cesar82 (16-09-2020), ffmla (29-10-2020), Masquerade (16-09-2020)
  #52  
Old 16-09-2020, 13:01
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
@BLACKFIRE69

Thank you for the update, however a huge bug has been introduced. Nothing has changed in my arc.ini since I added the new version to my compressor:

Code:
Compressed 119 files, 13,245,186,961 => 1,672 bytes. Ratio 0.00%
Compression time: cpu 14.33 sec/real 483.57 sec = 3%. Speed 27.39 mB/s
All OK
Using method: mtx:c64m:t16:rz

The folder being compressed is ~700MB and sometimes it says all 700MB becomes 1kb, other times like the above it only recognises some of the data.
Reply With Quote
  #53  
Old 16-09-2020, 14:20
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by Masquerade View Post
@BLACKFIRE69

Thank you for the update, however a huge bug has been introduced. Nothing has changed in my arc.ini since I added the new version to my compressor:

Code:
Compressed 119 files, 13,245,186,961 => 1,672 bytes. Ratio 0.00%
Compression time: cpu 14.33 sec/real 483.57 sec = 3%. Speed 27.39 mB/s
All OK
Using method: mtx:c64m:t16:rz

The folder being compressed is ~700MB and sometimes it says all 700MB becomes 1kb, other times like the above it only recognises some of the data.

no. it works without problems.
more details plz. what about my example compressor?
or send me related files.
Attached Images
File Type: png 2.png (289.1 KB, 219 views)
File Type: png Annotation 2020-09-17 024109.png (193.4 KB, 226 views)
Reply With Quote
  #54  
Old 17-09-2020, 00:51
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
@BLACKFIRE69

Yes with your compressor it works, but I did not change a single config between last time I used MTX and this time.

Perhaps I should fully remake my compressor and tidy things up? I'll get back to you after I try sort it.

Sorry for wasting your time...

Edit: I have mailed you an example compressor, I tried rewriting 3 times but it keeps returning <1KB files

Last edited by Masquerade; 17-09-2020 at 01:52.
Reply With Quote
  #55  
Old 17-09-2020, 06:55
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Lightbulb

Quote:
Originally Posted by Masquerade View Post
@BLACKFIRE69

Yes with your compressor it works, but I did not change a single config between last time I used MTX and this time.

Perhaps I should fully remake my compressor and tidy things up? I'll get back to you after I try sort it.

Sorry for wasting your time...

Edit: I have mailed you an example compressor, I tried rewriting 3 times but it keeps returning <1KB files

ok, check my answer i solved your problem.

and guys, since v2.0.0.5, the keyword "{compressor}" is no longer supported on arc.ini. please see the example.
Reply With Quote
  #56  
Old 27-09-2020, 10:47
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Talking

Update



What's new:
  • Bringing back "{compressor}".
    - Added support for "{compressor}" as before.



* cls-mtx supports two methods.

Code:
1: The simple way

[External compressor:precomp, mtxprecomp, mtx_precomp]
header    = 0
packcmd   = "Res\Precomp\precomp.exe" -cn -intense0 -o$$arcpackedfile$$.tmp $$arcdatafile$$.tmp
unpackcmd = "Res\Precomp\precomp.exe" -r -o$$arcdatafile$$.tmp $$arcpackedfile$$.tmp

Code:
2: Alternative method

[External compressor:precomp, mtxprecomp, mtx_precomp]
header    = 0
packcmd   = "Res\Precomp\{compressor}" -cn -intense0 -o$$arcpackedfile$$.tmp $$arcdatafile$$.tmp
unpackcmd = "Res\Precomp\{compressor}" -r -o$$arcdatafile$$.tmp $$arcpackedfile$$.tmp


and the exe name must be "precomp.exe" (similar to the first one in section names.)

Last edited by BLACKFIRE69; 02-10-2020 at 06:49.
Reply With Quote
The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post:
Cesar82 (27-09-2020), dixen (27-09-2020), ffmla (27-09-2020), Gehrman (05-12-2022), KaktoR (29-09-2020), Masquerade (27-09-2020)
  #57  
Old 30-09-2020, 07:14
dixen dixen is offline
Registered User
 
Join Date: Sep 2014
Location: Russia
Posts: 410
Thanks: 453
Thanked 444 Times in 204 Posts
dixen is on a distinguished road
Test

Left 4 dead 2 2.2.0.1

*.WAV (srep+mtxrz)

Quote:
Tested 47,599 files, 4,218,328,066 => 9,937,777,119 bytes. Ratio 42.45%
Testing time: cpu 8.50 sec/real 82.11 sec = 10%. Speed 121.03 mB/s
All OK
Reply With Quote
The Following User Says Thank You to dixen For This Useful Post:
BLACKFIRE69 (01-10-2020)
  #58  
Old 02-10-2020, 06:49
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Arrow cls-mtx October Update

cls-mtx October Update v2.0.0.7




What's new:
  • Fixed a minor issue..
    - Fixed an issue that related to the working directory.

Last edited by BLACKFIRE69; 24-07-2022 at 23:26.
Reply With Quote
The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post:
Balaji007 (05-10-2020), Cesar82 (03-10-2020), dixen (02-10-2020), L0v3craft (07-10-2020), Masquerade (02-10-2020), vint56 (12-02-2022)
  #59  
Old 12-07-2022, 09:57
kj911 kj911 is offline
Registered User
 
Join Date: Apr 2010
Location: world
Posts: 231
Thanks: 158
Thanked 88 Times in 62 Posts
kj911 is on a distinguished road
Any members tested the accelerator, using DLZ compressor in multi-core PC's?? (x86 or x64 and more CPU cores 2/4 to 8-16)
Reply With Quote
  #60  
Old 12-07-2022, 10:02
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
Quote:
Originally Posted by kj911 View Post
Any members tested the accelerator, using DLZ compressor in multi-core PC's?? (x86 or x64 and more CPU cores 2/4 to 8-16)
Don't use DLZ. LOLZ is superior + has built in mulithreading.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
New Universal Extractor By DLG felice2011 Conversion Tutorials 5 30-12-2018 04:16
Universal CLS Generator 78372 Conversion Tutorials 57 30-01-2018 04:04
CheatEngine Universal Game Cracker All Games 2014 sillywalks PC Games 1 01-12-2014 12:24
HELP: Universal Backup Instructions [RAW Mode] Rocha PC Games 3 30-06-2004 05:11
Universal Combat RCxxx CyKlone71 PC Games 0 03-03-2004 19:02



All times are GMT -7. The time now is 23:45.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com