Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@SortOfTested I'm not that advanced. All I have is .ukx, .utx, .u, .int, .dat and dll files (game is based on unreal engine) and want to shrink them in an archive that would take as less as possible :/
-
@zemaitis
For just basic compression, you should tar the file, then compress it. Using something like brotli with that technique will get you slightly better compression, but until you cross the barrier where the data can get generated by the runtime process, you'll be limited in terms of what you can do. -
endor57515yOther compression algorithms/software might achieve slightly better results, but keep in mind that there's a limit to how much you can compress data. The closer it is to random noise, the closer you are to that limit.
Going from 1.2GB to 550MB of compiled code and game assets is a pretty good result imo, so unless you're concerned about squeezing every last MB out of the final result (even at the cost of longer decompression times) I say you don't need to worry too much about it. -
Parzi88335ytar+xz is always a good start for massive space savings. Occasionally 7z comes close, but not often. RAR is just... meh.
Related Rants
I have 1.2gb of files, they are textures (client side for my gameserver players). By using winrar I managed to archive it to 550MB. Do you guys know more efficient way of shrinking large sizes of files?
rant
question