FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Helping thread :) (https://fileforums.com/showthread.php?t=98274)

~MAK~ 21-09-2016 11:59

Quote:

Originally Posted by ChronoCross (Post 451942)
Welcome MAK and thanks for made this thread!.
i have a question.
Some files in games have 98% or 99% of entropy like media or compressed data.
sometimes this data are packed and impossible to extract and rebuild without any errors.
So just for save time, there is any way to sort those files with 98% or 99% of entropy in a list to use a store method of compression.
I mean like a entropy detector or something like that?
i ask you this because we can easy detect media files by extension (ogg, bik, mp3) but in some cases this files are already packed, so extension doesnŽt work here.
thanks

hmmm, whenever I get that type of files, then I firstly try Offzip by Luigi to see if their is any raw files or not on that specific files, if their is, then I try reflate with them or you can you precomp also after knowing the offzip location of streams ;) , and compress them, if not and you don't even get any rebuilder or extractor, then you could even give a try to zstd, sometime, its worth on these type files ;)

ChronoCross 21-09-2016 12:13

Thank you!. IŽll try

ChronoCross 22-09-2016 18:40

I was download smoke.exe by bulat. This tool can calculate the entropy and also have the source in c .
I need a script in batch to sort the files with 95% and 100% of entropy to txt file list.
This list of files is to using in arc.exe to storing.
So any ideas?

minivj 22-09-2016 19:16

I have my game compressed with
Quote:

-mpzlib+srep+lzma:max data.arc
and i want to implement the compression with asc template. Please help me, what to do next??

~MAK~ 22-09-2016 19:23

Quote:

Originally Posted by ChronoCross (Post 451989)
I was download smoke.exe by bulat. This tool can calculate the entropy and also have the source in c .
I need a script in batch to sort the files with 95% and 100% of entropy to txt file list.
This list of files is to using in arc.exe to storing.
So any ideas?

Ahh matey, that is nice, but its old too, anyways, am not much good in writing batch files, but I will try to write one, currently having exams also :(

Quote:

Originally Posted by minivj (Post 451990)
I have my game compressed with
and i want to implement the compression with asc template. Please help me, what to do next??

Go to deployment>>Setup Resources and then click on add pzlib.exe and pzlib64.exe

and add your arc.ini also which you used for compression ;)

~MAK~ 22-09-2016 19:30

Quote:

Originally Posted by ChronoCross (Post 451989)
I was download smoke.exe by bulat. This tool can calculate the entropy and also have the source in c .
I need a script in batch to sort the files with 95% and 100% of entropy to txt file list.
This list of files is to using in arc.exe to storing.
So any ideas?

Btw, why not you use mask with arc?? Just make a new mask in arc.groups and add that file extension, and add that mask in your command line, and then add a no compression method? :P

aswadd 23-09-2016 00:11

Mak I want to ask you what's ur opinion or ur experience of / about
lzma & xz (Lzma2) & 4x4:lzma which do you prefer to use for a good ratio & also good decompression speed
I also see most of the repackers doesn't use huge dictionary / lzma max settings !! However in most of the cases it won't help u much the difference will be couple of megabytes :)
can you explain more about lzma :)

aswadd 23-09-2016 00:23

Quote:

Originally Posted by ChronoCross (Post 451989)
I was download smoke.exe by bulat. This tool can calculate the entropy and also have the source in c .
I need a script in batch to sort the files with 95% and 100% of entropy to txt file list.
This list of files is to using in arc.exe to storing.
So any ideas?

you will need a huge batch file to handle this , however i'm not sure about bat , i don't think it can be done with batch

~MAK~ 23-09-2016 01:51

Quote:

Originally Posted by aswadd (Post 451996)
Mak I want to ask you what's ur opinion or ur experience of / about
lzma & xz (Lzma2) & 4x4:lzma which do you prefer to use for a good ratio & also good decompression speed
I also see most of the repackers doesn't use huge dictionary / lzma max settings !! However in most of the cases it won't help u much the difference will be couple of megabytes :)
can you explain more about lzma :)

Aswadd if you ask my opinion, I mostly prefer xz, the reason is, if its offers a very fast decompression speed and it even gives much better ratio sometimes, and normally it could be bigger by 1-2mb in comparison to lzma, but for 1-2mb, I could go for xz because it has faster installation time.... Books are calling me... Talk to you later ;)

aswadd 23-09-2016 02:15

Quote:

Originally Posted by ~MAK~ (Post 452000)
Aswadd if you ask my opinion, I mostly prefer xz, the reason is, if its offers a very fast decompression speed and it even gives much better ratio sometimes, and normally it could be bigger by 1-2mb in comparison to lzma, but for 1-2mb, I could go for xz because it has faster installation time.... Books are calling me... Talk to you later ;)

yes i know that :D but what if we edited the comparison to be like this
4x4:lzma vs xz
I think 4x4:lzma will be faster & better but in the end it costs more ram & cpu :)

~MAK~ 23-09-2016 02:42

Quote:

Originally Posted by aswadd (Post 452002)
yes i know that :D but what if we edited the comparison to be like this
4x4:lzma vs xz
I think 4x4:lzma will be faster & better but in the end it costs more ram & cpu :)

Matey, there are varieties in every thing, look you could get better speed also, but in the cost of high CPU usuage, but I normally prefer xz, I don't say lzma is bad, but just I'll like xz speed and ratio with its normal CPU usage, am on mobile and couldn't tell you everything now.

Gupta 23-09-2016 06:26

Quote:

Originally Posted by aswadd (Post 452002)
yes i know that :D but what if we edited the comparison to be like this
4x4:lzma vs xz
I think 4x4:lzma will be faster & better but in the end it costs more ram & cpu :)

IMOH, if u r planning to use things with freearc then go with fazip
this will give u better compression speed and u don't even need fazip.exe to decompress and even better compression speed many times

Quote:

[External compressor:rep,lzma,4x4,delta,exe]
header = 0
mem = 730
packcmd = fazip -i0 compress:{compressor}{:option} <stdin> <stdout>
unpackcmd = fazip -i0 decompress:{compressor}{:option} <stdin> <stdout>

~MAK~ 23-09-2016 06:34

Quote:

Originally Posted by PrinceGupta2000 (Post 452008)
IMOH, if u r planning to use things with freearc then go with fazip
this will give u better compression speed and u don't even need fazip.exe to decompress and even better compression speed many times

Yeah that is princegupta, but he actually asked me the difference, and I was on mobile and still on mobile, BTW thanks for contributing, this thread is made for sharing of knowledge only ;) I am good to see that people are stepping forward to make the forum clean :)

lolaya 23-09-2016 07:52

~MAK~@ you welcome :)

Blade2239 23-09-2016 10:21

anybody playing GTA V PC game.
I am playing this and my problem is whenever I open GTAlauncher.exe game starts and loads directly into game no main menu..
I tried landing page and turned it on and off many times restarted the PC nothing worked....
now how to do it anyone have knowledge about it


All times are GMT -7. The time now is 17:19.

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