FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   DiskSpan GUI (https://fileforums.com/showthread.php?t=104507)

KaktoR 06-01-2023 13:25

lol I didn't saw this. Thanks

KaktoR 14-01-2023 04:08

@César

In xtool ue4 plugin, you have to add 0x before the key, otherwise decryption does not work.

Example
Code:

xtool:c128mb:mreflate:d1:mue4,k0x6005F03B0D2DABCD75892C80958FFB00CBA5437AD37EB4BFCD5960FFE0C4E12D

Compressed 1 file, 552,580,759 => 995,427,776 bytes. Ratio 180.14%
Compression time: cpu 0.23 sec/real 14.92 sec = 2%. Speed 37.04 mB/s
All OK

Code:

xtool:c128mb:mreflate:d1:mue4,k6005F03B0D2DABCD75892C80958FFB00CBA5437AD37EB4BFCD5960FFE0C4E12D

Compressed 1 file, 552,580,759 => 552,581,284 bytes. Ratio 100.00%
Compression time: cpu 0.20 sec/real 4.74 sec = 4%. Speed 116.58 mB/s
All OK

0x will not be added if you choose the key from the drop down list.

Cesar82 14-01-2023 04:20

Quote:

Originally Posted by KaktoR (Post 499775)
@César

In xtool ue4 plugin, you have to add 0x before the key, otherwise decryption does not work.

Example
Code:

xtool:c128mb:mreflate:d1:mue4,k0x6005F03B0D2DABCD75892C80958FFB00CBA5437AD37EB4BFCD5960FFE0C4E12D

Compressed 1 file, 552,580,759 => 995,427,776 bytes. Ratio 180.14%
Compression time: cpu 0.23 sec/real 14.92 sec = 2%. Speed 37.04 mB/s
All OK

Code:

xtool:c128mb:mreflate:d1:mue4,k6005F03B0D2DABCD75892C80958FFB00CBA5437AD37EB4BFCD5960FFE0C4E12D

Compressed 1 file, 552,580,759 => 552,581,284 bytes. Ratio 100.00%
Compression time: cpu 0.20 sec/real 4.74 sec = 4%. Speed 116.58 mB/s
All OK

0x will not be added if you choose the key from the drop down list.

As far as I know xtool doesn't need to use 0x after :k... 0x is only needed for ue4dt:k0x...

KaktoR 14-01-2023 04:23

I just can say it is required :)

Here with batch file

Code:

E:\_Compress\#FA_example>arc.exe a -ep1 -r -ed -s; -w.\temp -mxtool:ue4,k0x6005F03B0D2DABCD75892C80958FFB00CBA5437AD37EB4BFCD5960FFE0C4E12D+xtool:reflate data.arc "pack\*"
FreeArc 0.67 (March 15 2014) creating archive: data.arc
Compressed 1 file, 552,580,759 => 995,325,928 bytes. Ratio 180.12%
Compression time: cpu 0.44 sec/real 19.92 sec = 2%. Speed 27.74 mB/s
All OK

E:\_Compress\#FA_example>arc.exe a -ep1 -r -ed -s; -w.\temp -mxtool:ue4,k6005F03B0D2DABCD75892C80958FFB00CBA5437AD37EB4BFCD5960FFE0C4E12D+xtool:reflate data.arc "pack\*"
FreeArc 0.67 (March 15 2014) creating archive: data.arc
Compressed 1 file, 552,580,759 => 552,581,691 bytes. Ratio 100.00%
Compression time: cpu 0.48 sec/real 5.96 sec = 8%. Speed 92.64 mB/s
All OK


Cesar82 14-01-2023 05:21

Quote:

Originally Posted by KaktoR (Post 499777)
I just can say it is required :)

Here with batch file

Code:

E:\_Compress\#FA_example>arc.exe a -ep1 -r -ed -s; -w.\temp -mxtool:ue4,k0x6005F03B0D2DABCD75892C80958FFB00CBA5437AD37EB4BFCD5960FFE0C4E12D+xtool:reflate data.arc "pack\*"
FreeArc 0.67 (March 15 2014) creating archive: data.arc
Compressed 1 file, 552,580,759 => 995,325,928 bytes. Ratio 180.12%
Compression time: cpu 0.44 sec/real 19.92 sec = 2%. Speed 27.74 mB/s
All OK

E:\_Compress\#FA_example>arc.exe a -ep1 -r -ed -s; -w.\temp -mxtool:ue4,k6005F03B0D2DABCD75892C80958FFB00CBA5437AD37EB4BFCD5960FFE0C4E12D+xtool:reflate data.arc "pack\*"
FreeArc 0.67 (March 15 2014) creating archive: data.arc
Compressed 1 file, 552,580,759 => 552,581,691 bytes. Ratio 100.00%
Compression time: cpu 0.48 sec/real 5.96 sec = 8%. Speed 92.64 mB/s
All OK



Yes I understand. I've seen the results.
It took me a lot of work to code different modes for xtool:mue4 (without 0x) and for ue4dt (with 0x) using the same code.
It would be so much easier if this were already a standard.

This 0x requirement must have been mandatory after the last versions of the unreal plugin.

See that Razor12911 didn't change the description and examples HERE.

I'll change to the next DSG

KaktoR 14-01-2023 05:33

Great, tell me if you want to share the new version. I have something to share.

Cesar82 14-01-2023 06:53

Quote:

Originally Posted by KaktoR (Post 499779)
Great, tell me if you want to share the new version. I have something to share.

There are currently no changes or corrections made.
It would be better to have more things fixed or updated for a new version.
If you have compressors update or some other update send me.
Thanks!

exorc 14-01-2023 09:21

How to use this?

https://i.postimg.cc/Sjchnhrb/1.jpg

https://i.postimg.cc/hfgqx5yz/2.jpg

Masquerade 14-01-2023 09:49

Quote:

Originally Posted by exorc (Post 499786)
How to use this?

Read the 2nd post in the thread! :mad:

KaktoR 14-01-2023 15:39

Quote:

Originally Posted by exorc (Post 499786)

Seems like DSG is not downloading the xtool anvil plugin (again lol).

I have the same problem here. You have to download it manually in developer mode (run the bat file or hold CTRL key and open DSG exe until it opens -> go to compression settings, then you should see a "Download" tab).

Cesar82 14-01-2023 17:33

Quote:

Originally Posted by KaktoR (Post 499794)
Seems like DSG is not downloading the xtool anvil plugin (again lol).

I have the same problem here. You have to download it manually in developer mode (run the bat file or hold CTRL key and open DSG exe until it opens -> go to compression settings, then you should see a "Download" tab).

Find and replace "mavil" to "manvil" in [DOWNLOADS] section of the "DSG_Methods.ini" file.

This will be fixed in the next version.

KaladinDMP 14-02-2023 15:08

Hello hopefully someone can help me. I have been using diskspan gui for a while and finally decided to update it to the newest version. Seems to be working great and much quicker and had no issues until i went to run the installer and it says Unknown Compression Method. Im wondering if this is something obvious or because my script is too old or what? Maybe some includes are needing to be changed.

Screenshot of the error

I also have logs if those will help
Conversion ARC.log
Conversion LOG.log

Please advise. Im sure its something simple

Cesar82 14-02-2023 20:22

Quote:

Originally Posted by KaladinDMP (Post 500195)
Hello hopefully someone can help me. I have been using diskspan gui for a while and finally decided to update it to the newest version. Seems to be working great and much quicker and had no issues until i went to run the installer and it says Unknown Compression Method. Im wondering if this is something obvious or because my script is too old or what? Maybe some includes are needing to be changed.

Screenshot of the error

I also have logs if those will help
Conversion ARC.log
Conversion LOG.log

Please advise. Im sure its something simple

Perhaps your script is not supported.
Make sure the decompressor files for xtool, srep and lolz are inside Setup.dll (Use FreeArc to open Setup.dll).
If you want me to check it, send me the script you used.

KaladinDMP 15-02-2023 13:29

Quote:

Originally Posted by Cesar82 (Post 500198)
Perhaps your script is not supported.
Make sure the decompressor files for xtool, srep and lolz are inside Setup.dll (Use FreeArc to open Setup.dll).
If you want me to check it, send me the script you used.

Thanks for the answer, we came to the same conclusion basically. we are trying to update our installer and using a new script using one of the ones that says DSG supports in the first post. If that doesnt fix it ill send you both scripts but hoping to resolve it without further bothering anyone else. Thanks again

Gehrman 15-02-2023 13:50

brunsli jpeg recompressor
 
1 Attachment(s)
Code:

[External compressor:brunsli]
header    = 0
packcmd    = brunsli64.exe c - - <stdin> <stdout>
unpackcmd  = brunsli64.exe d - - <stdin> <stdout>
solid=0

https://encode.su/threads/3128-bruns...ll=1#post60450


All times are GMT -7. The time now is 15:13.

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