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
  #1  
Old 28-07-2019, 16:30
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,308 Times in 464 Posts
Simorq is on a distinguished road
xtool_1907_R1 Test

Does not work with ba2/csg files.
Code:
Fallout4 - Textures7.ba2 / DLCCoast - Geometry.csg
32bit= ERROR: write error (disk full?) in compression algorithm zlib/reflate/rzlib
64bit= ERROR: write error (disk full?) in compression algorithm zlib/reflate/rzlib or stuck cpu


-------------------------------------------------------------------

Works with this setting.
Code:
[External compressor:rzlib,zlib,reflate]
header    = 0
packcmd   = xtool.exe precomp:rzlib:c32mb,t1 $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = xtool.exe decode:t50p - - <stdin> <stdout>
Code:
Fallout4 - Textures7.ba2 520 MB
ZLIB
Code:
Creating archive: data.arc using zlib
Compressed 1 file, 545,959,220 => 1,237,654,873 bytes. Ratio 226.69%       
Compression time: cpu 0.52 sec/real 84.11 sec = 1%. Speed 6.49 mB/s
All OK

zlib: decode:t100p
Testing archive: data.arc
Tested 1 file, 1,237,654,873 => 545,959,220 bytes. Ratio 226.69%           
Testing time: cpu 0.45 sec/real 9.53 sec = 5%. Speed 57.29 mB/s
All OK
REFLATE
Code:
Creating archive: data.arc using reflate
Compressed 1 file, 545,959,220 => 1,237,783,515 bytes. Ratio 226.72%       
Compression time: cpu 0.42 sec/real 113.43 sec = 0%. Speed 4.81 mB/s
All OK

reflate: decode:t100p
Testing archive: data.arc
Tested 1 file, 1,237,783,515 => 545,959,220 bytes. Ratio 226.72%           
Testing time: cpu 0.36 sec/real 12.23 sec = 3%. Speed 44.62 mB/s
All OK
RZLIB
Code:
Creating archive: data.arc using rzlib
Compressed 1 file, 545,959,220 => 1,237,654,873 bytes. Ratio 226.69%       
Compression time: cpu 0.53 sec/real 85.22 sec = 1%. Speed 6.41 mB/s
All OK

rzlib: decode:t2
Testing archive: data.arc
Tested 1 file, 1,237,654,873 => 545,959,220 bytes. Ratio 226.69%           
Testing time: cpu 0.98 sec/real 73.38 sec = 1%. Speed 7.44 mB/s
All OK

rzlib: decode:t100p
Testing archive: data.arc
Tested 1 file, 1,237,654,873 => 545,959,220 bytes. Ratio 226.69%           
Testing time: cpu 0.77 sec/real 73.54 sec = 1%. Speed 7.42 mB/s
All OK

Last edited by Simorq; 28-07-2019 at 17:16.
Reply With Quote
The Following User Says Thank You to Simorq For This Useful Post:
Razor12911 (28-07-2019)
Sponsored Links
  #2  
Old 28-07-2019, 17:14
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
Can you run xtool outside freearc, like via console.

Code:
@echo off
xtool.exe precomp:rzlib:c16mb,t100p %1 %1.out
pause
I'm interested in the exception/error message
Reply With Quote
The Following 2 Users Say Thank You to Razor12911 For This Useful Post:
ShivShubh (24-11-2019), Simorq (28-07-2019)
  #3  
Old 28-07-2019, 17:21
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,308 Times in 464 Posts
Simorq is on a distinguished road
@Razor12911
good


-------------------------
I think the main problem is - -.
- - <stdin> <stdout>

Last edited by Simorq; 28-07-2019 at 17:25.
Reply With Quote
The Following User Says Thank You to Simorq For This Useful Post:
Razor12911 (28-07-2019)
  #4  
Old 28-07-2019, 17:31
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
try this then

Code:
@echo off
xtool.exe precomp:rzlib:c32mb,t100p - - < %1 > %1.out
xtool.exe decode:t100p - - < %1.out > %1.res
fc /b %1 %1.res
pause
Reply With Quote
The Following 2 Users Say Thank You to Razor12911 For This Useful Post:
ShivShubh (24-11-2019), Simorq (28-07-2019)
  #5  
Old 28-07-2019, 17:38
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,308 Times in 464 Posts
Simorq is on a distinguished road
@Razor12911
no work
stuck cpu
Reply With Quote
The Following 2 Users Say Thank You to Simorq For This Useful Post:
Razor12911 (28-07-2019), ZAZA4EVER (29-07-2019)
  #6  
Old 28-07-2019, 17:42
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
Nice ghost bugs, I'll check what I missed in the source and thanks for the tests.
Reply With Quote
The Following 3 Users Say Thank You to Razor12911 For This Useful Post:
ShivShubh (24-11-2019), Simorq (28-07-2019), ZAZA4EVER (29-07-2019)
  #7  
Old 29-07-2019, 00:19
Sergey3695 Sergey3695 is offline
Registered User
 
Join Date: Mar 2013
Location: Russia
Posts: 86
Thanks: 43
Thanked 76 Times in 42 Posts
Sergey3695 is on a distinguished road
I have a problem using t100p.
Reply With Quote
The Following User Says Thank You to Sergey3695 For This Useful Post:
oltjon (29-07-2019)
  #8  
Old 30-07-2019, 05:37
Sergey3695 Sergey3695 is offline
Registered User
 
Join Date: Mar 2013
Location: Russia
Posts: 86
Thanks: 43
Thanked 76 Times in 42 Posts
Sergey3695 is on a distinguished road
add pls lvl setting for reflate 1-9. thx.
Reply With Quote
  #9  
Old 31-07-2019, 03:00
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by Sergey3695 View Post
add pls lvl setting for reflate 1-9. thx.
Have patience
Reply With Quote
The Following 4 Users Say Thank You to Razor12911 For This Useful Post:
Harsh ojha (31-07-2019), shazzla (31-07-2019), ShivShubh (24-11-2019), Simorq (31-07-2019)
  #10  
Old 31-07-2019, 23:56
IgorKolesnik IgorKolesnik is offline
Registered User
 
Join Date: Dec 2018
Location: Kiev
Posts: 31
Thanks: 27
Thanked 7 Times in 6 Posts
IgorKolesnik is on a distinguished road
using these parameters, the expansion reaches 2.4% and freezes.

[External compressor:xtool]
header = 0
packcmd = xtool.exe precomp:rzlib,zlib,reflate:c16mb,t2 - - <stdin> <stdout>


I am using the x64 version.

Last edited by IgorKolesnik; 01-08-2019 at 00:04.
Reply With Quote
  #11  
Old 01-08-2019, 07:41
FitGirl FitGirl is offline
Registered User
 
Join Date: Dec 2014
Location: Riga
Posts: 209
Thanks: 21
Thanked 244 Times in 132 Posts
FitGirl is on a distinguished road
Quote:
Originally Posted by IgorKolesnik View Post
using these parameters, the expansion reaches 2.4% and freezes.

[External compressor:xtool]
header = 0
packcmd = xtool.exe precomp:rzlib,zlib,reflate:c16mb,t2 - - <stdin> <stdout>


I am using the x64 version.
And why do you use all three methods at the same time?
Reply With Quote
  #12  
Old 01-08-2019, 07:44
IgorKolesnik IgorKolesnik is offline
Registered User
 
Join Date: Dec 2018
Location: Kiev
Posts: 31
Thanks: 27
Thanked 7 Times in 6 Posts
IgorKolesnik is on a distinguished road
Quote:
Originally Posted by FitGirl View Post
And why do you use all three methods at the same time?
если я оставлю только один метод, ошибка та же.

----

if I leave only one method, the error is the same.
Reply With Quote
  #13  
Old 01-08-2019, 07:46
IgorKolesnik IgorKolesnik is offline
Registered User
 
Join Date: Dec 2018
Location: Kiev
Posts: 31
Thanks: 27
Thanked 7 Times in 6 Posts
IgorKolesnik is on a distinguished road
But what is the difference between rzlib and zlib?
Reply With Quote
  #14  
Old 01-08-2019, 08:19
FitGirl FitGirl is offline
Registered User
 
Join Date: Dec 2014
Location: Riga
Posts: 209
Thanks: 21
Thanked 244 Times in 132 Posts
FitGirl is on a distinguished road
Quote:
Originally Posted by IgorKolesnik View Post
But what is the difference between rzlib and zlib?
Don't be that lazy.
https://fileforums.com/showpost.php?...4&postcount=35

As for decompression error - it's been already reported and Razor answered.

And don't use Russian here, it's English-only forum.
Reply With Quote
The Following 2 Users Say Thank You to FitGirl For This Useful Post:
Harsh ojha (01-08-2019), sajmon83 (01-08-2019)
  #15  
Old 01-08-2019, 15:17
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
There are internal errors I've come across, so for now until next update, don't use xtool. the expansion stops because of memory management issues, xtool keeps increasing memory usage over and over again until you run out of memory, I noticed this when I was running some tests.

As of right now, I have fixed this issue but am running more tests to make sure all is well.

FitGirl mentioned you must pick one codec in the zlib lineup, rzlib is what is best and it's the same one used in the old xtool, I just added the other ones (zlib and reflate) for special cases where a specific codec is required.
Reply With Quote
The Following 8 Users Say Thank You to Razor12911 For This Useful Post:
Cesar82 (02-08-2019), dixen (02-08-2019), Harsh ojha (01-08-2019), IgorKolesnik (02-08-2019), shazzla (01-08-2019), ShivShubh (24-11-2019), Simorq (01-08-2019), ZAZA4EVER (02-08-2019)
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
[Dev]XTool Razor12911 Conversion Tutorials 180 23-10-2020 06:26
Project Cars Digital Edition (3xDVD5) (srep+lzma) GTX590 PC Games - CD/DVD Conversions 10 28-08-2017 08:34
Project IGI Anthology 1xCD700 CIUV2 2039 mausschieber PC Games - CD/DVD Conversions 0 24-07-2017 15:12
Space Channel 5 Part 2 Translation Project Christuserloeser DC Games 0 21-06-2004 18:16



All times are GMT -7. The time now is 03:14.


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