Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Display Modes
  #16  
Old 10-11-2016, 08:49
Nizar3003's Avatar
Nizar3003 Nizar3003 is offline
Registered User
 
Join Date: May 2015
Location: Indonesia
Posts: 62
Thanks: 16
Thanked 36 Times in 20 Posts
Nizar3003 is on a distinguished road
how to used this method ???
Reply With Quote
Sponsored Links
  #17  
Old 10-11-2016, 11:33
lolaya lolaya is offline
Banned
 
Join Date: Jul 2011
Location: still life
Posts: 138
Thanks: 156
Thanked 38 Times in 29 Posts
lolaya is on a distinguished road
msrep+a7a+exe2:d128m:fb128:mc1000
Reply With Quote
  #18  
Old 07-12-2016, 02:46
artag artag is offline
Registered User
 
Join Date: Nov 2016
Location: somewhere
Posts: 20
Thanks: 9
Thanked 4 Times in 4 Posts
artag is on a distinguished road
can anybody explain to me how the substitution works on arc.ini (to create more complex methods) the readme included with freearc is very confusing (it was automatically translated from russian.
For example:
Code:
5ccm2 = ccm2/$text=dict:p+lzp+ppmd:10:512mb/$wav=tta/$bmp=bmp/$jpg=jpg/$jpgsolid=precomp+rep:32/$iso=ecm+precomp+ccm2/$precomp=precomp+ccm2
what 5ccm2 means?
thanks
pd:i know i'm not sharing a method, but i cant find a more proper thread with the method substitution meaning.
Reply With Quote
  #19  
Old 02-05-2017, 02:03
78372 78372 is offline
Registered User
 
Join Date: Dec 2016
Location: Bangladesh
Posts: 650
Thanks: 772
Thanked 949 Times in 309 Posts
78372 is on a distinguished road
I generally use precomp040+srep+delta+exe2+lzma. It depends on various games.
__________________
NOT AVAILABLE
Reply With Quote
  #20  
Old 02-05-2017, 02:18
romulus_ut3 romulus_ut3 is offline
Registered User
 
Join Date: Dec 2014
Location: Bangladesh
Posts: 71
Thanks: 169
Thanked 13 Times in 12 Posts
romulus_ut3 is on a distinguished road
Depends on the game I am compressing, really.

A Game that has Zlib streams will compress far better with Pzlib+Srep64+xz.

I am not a fan of using Delta+exe2 because quite frankly I have seen it yield poor results compared to using straight up srep64+xz.

There aren't any general method that'll work with every game. Each game is different unless it's built on the same engine (Like Source Engine, Unreal Engine, etc.)

Unreal Engine games usually compress to 38%~50% in average for me.

I get great results with Pzlib+msc+srep64+xz when used with Resident Evil 0 HD Remaster, for example.

Last edited by romulus_ut3; 02-05-2017 at 02:25.
Reply With Quote
  #21  
Old 02-05-2017, 02:23
romulus_ut3 romulus_ut3 is offline
Registered User
 
Join Date: Dec 2014
Location: Bangladesh
Posts: 71
Thanks: 169
Thanked 13 Times in 12 Posts
romulus_ut3 is on a distinguished road
Quote:
Originally Posted by artag View Post
can anybody explain to me how the substitution works on arc.ini (to create more complex methods) the readme included with freearc is very confusing (it was automatically translated from russian.
For example:
Code:
5ccm2 = ccm2/$text=dict:p+lzp+ppmd:10:512mb/$wav=tta/$bmp=bmp/$jpg=jpg/$jpgsolid=precomp+rep:32/$iso=ecm+precomp+ccm2/$precomp=precomp+ccm2
what 5ccm2 means?
thanks
pd:i know i'm not sharing a method, but i cant find a more proper thread with the method substitution meaning.
That's actually a mask that you've included in your code. Masks are useful if you are compressing the game in one huge bundle. The arc.groups file classifies certain files formats and will compress them in the method described in the arc.ini to achieve best possible compression.

For example, jpg files are referred to as $solid. MSR aka Precomp43 will be used to compress those, if found.

$void are files that're already compressed to the max, like videos. If .bik files are found among what you're compressing, it'll use Srep64 to compress them, as these files can't be compressed further. (though in my experience, srep64+xz helps to reduce the size a tad more)

$text is declaring the method that'll be used to compress text files.
Reply With Quote
  #22  
Old 02-05-2017, 02:28
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,304 Times in 464 Posts
Simorq is on a distinguished road
;Timick Methods - lzma:a1:mfbt3:d400m:fb32:mc1000000:lc8
;FitGirl Methods - lzma:ultra:512m:a2:mfbt4:fb1024:mc10000:lc8:lp4:pb 4
;Fenixx Methods - lzma:177mb:normal:bt4:128:mc10000:lc8
;Best Methods - lzma:200mb:normal:bt4:128:mc100000:lc8

Last edited by pakrat2k2; 02-05-2017 at 07:30.
Reply With Quote
The Following User Says Thank You to Simorq For This Useful Post:
EzzEldin16 (20-08-2017)
  #23  
Old 03-05-2017, 01:26
Bulat Bulat is offline
Registered User
 
Join Date: May 2016
Location: Moscow
Posts: 63
Thanks: 26
Thanked 50 Times in 27 Posts
Bulat is on a distinguished road
Quote:
5ccm2 = ccm2/$text=dict:p+lzp+ppmd:10:512mb/$wav=tta/$bmp=bmp/$jpg=jpg/$jpgsolid=precomp+rep:32/$iso=ecm+precomp+ccm2/$precomp=precomp+ccm2
this line means:
- compress group $text with dict:p+lzp+ppmd:10:512mb
- compress group $wav with tta
- ....
- compress remaining files with ccm2

groups are defined in arc.groups file. i.e.

$exe
*.exe
*.dll
$text
*.txt
$binary
*.x
*.y
$default
*.z

means that exe/dll files will be placed in group $exe, txt files into $text, x/y/z and all unspecified files (denoted by $default) - in group $binary

arc.groups also establishes file sorting order for compression

Last edited by pakrat2k2; 03-05-2017 at 07:31.
Reply With Quote
The Following 4 Users Say Thank You to Bulat For This Useful Post:
ffmla (03-05-2017), JRD! (03-05-2017), mikey26 (03-05-2017), shazzla (11-05-2017)
  #24  
Old 14-06-2019, 08:39
Carldric Clement's Avatar
Carldric Clement Carldric Clement is offline
Registered User
 
Join Date: Aug 2014
Location: Toboh, Sabah, Malaysia
Posts: 579
Thanks: 579
Thanked 632 Times in 227 Posts
Carldric Clement is on a distinguished road
hmm... let me share some simple my method used from Mini Compressor.

Quote:
mcs = xprecomp+srep:m3f:a2+exe+lzma2:d128m:mt2/$bink=bpk+srep:m3f:a1:mem1024mb+tor:7/$void=srep:m3f:a2:mem1024mb+tor:7/$photo=jojpeg/$ogg=oggre/$wavz=tta/$mp3=packmp3+srep:m3f:a2+exe+tor
mcx = xprecomp+srep:m3f:a2+exe+lolz:d128m:mt2/$bink=bpk+srep:m3f:a1:mem1024mb+tor:7/$void=srep:m3f:a2:mem1024mb+tor:7/$photo=jojpeg/$ogg=oggre/$wavz=tta/$mp3=packmp3+srep:m3f:a2+exe+tor
Reply With Quote
Reply

Tags
arc.ini compression, compressing method

Thread Tools
Display Modes

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
Freearc What Method Razor12911 Conversion Tutorials 27 03-03-2017 21:54
Problem with Backups MrJigi PSX Games 4 30-05-2003 12:33
battlefield prob super_gray PC Games 4 09-12-2002 13:27
New burning method (the one using bin2boot) won't work with all games? Please read and help RedsunsFD DC Games 3 30-11-2001 04:06



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


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