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 15-10-2021, 03:22
fabrieunko fabrieunko is offline
Registered User
 
Join Date: Sep 2021
Location: france
Posts: 217
Thanks: 516
Thanked 78 Times in 71 Posts
fabrieunko is on a distinguished road
srep / srep64? help me

hello currently I use this method to compress my files

Code:
arc a -lc8 -ep1 -ed -r -hp1234 -w.\ C:\Games\TDF-Setup-1.bin -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "C:\Games\Tour de France 2021\*"

with the following arc.ini

Code:
[External compressor:srep]
;options  = l%d (minimal match length, default=512)
header = 0
packcmd   = srep {options} -a1 -m5f $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep -d $$arcpackedfile$$.tmp $$arcdatafile$$.tmp

[External compressor:precomp]
header = 0
packcmd   = precomp -slow {options} -o$$arcpackedfile$$.tmp  $$arcdatafile$$.tmp
unpackcmd = precomp -o$$arcdatafile$$.tmp -r $$arcpackedfile$$.tmp
how to use srep64.exe? what should be changed?

I have trouble understanding and finding the information to do this ..
Reply With Quote
Sponsored Links
  #2  
Old 15-10-2021, 06:19
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by fabrieunko View Post
hello currently I use this method to compress my files

Code:
arc a -lc8 -ep1 -ed -r -hp1234 -w.\ C:\Games\TDF-Setup-1.bin -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "C:\Games\Tour de France 2021\*"

with the following arc.ini

Code:
[External compressor:srep]
;options  = l%d (minimal match length, default=512)
header = 0
packcmd   = srep {options} -a1 -m5f $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep -d $$arcpackedfile$$.tmp $$arcdatafile$$.tmp

[External compressor:precomp]
header = 0
packcmd   = precomp -slow {options} -o$$arcpackedfile$$.tmp  $$arcdatafile$$.tmp
unpackcmd = precomp -o$$arcdatafile$$.tmp -r $$arcpackedfile$$.tmp
how to use srep64.exe? what should be changed?

I have trouble understanding and finding the information to do this ..
Code:
[External compressor:srep]
;options  = l%d (minimal match length, default=512)
header = 0
packcmd   = srep64 {options} -a1 -m5f $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep64 -d $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
Reply With Quote
  #3  
Old 15-10-2021, 06:34
fabrieunko fabrieunko is offline
Registered User
 
Join Date: Sep 2021
Location: france
Posts: 217
Thanks: 516
Thanked 78 Times in 71 Posts
fabrieunko is on a distinguished road
this seems logical I am stupid not to have thought about it .. and can I keep the 2 versions? in the arc.ini file? or should we change it to one or the other version?
Reply With Quote
  #4  
Old 15-10-2021, 06:45
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by fabrieunko View Post
this seems logical I am stupid not to have thought about it .. and can I keep the 2 versions? in the arc.ini file? or should we change it to one or the other version?
This way yes...
You can also use srep32 or another name for the 32-bit version and keep only srep for the 64-bit version.
Code:
arc a -lc8 -ep1 -ed -r -hp1234 -w.\ C:\Games\TDF-Setup-1.bin -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "C:\Games\Tour de France 2021\*"

arc a -lc8 -ep1 -ed -r -hp1234 -w.\ C:\Games\TDF-Setup-1.bin -msrep64+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "C:\Games\Tour de France 2021\*"
Code:
[External compressor:srep]
header = 0
packcmd   = srep {options} -a1 -m5f $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep -d $$arcpackedfile$$.tmp $$arcdatafile$$.tmp

[External compressor:srep64]
header = 0
packcmd   = srep64 {options} -a1 -m5f $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep64 -d $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
Always remembering on the command line must use the name that is inside the section, such as [External compressor:srep].
The "srep" value in the packcmd= and unpackcmd= keys refers to the name of the executable used (You can use "srep.exe", with an extension if you prefer).
Reply With Quote
  #5  
Old 15-10-2021, 08:45
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,405 Times in 637 Posts
Masquerade is on a distinguished road
Piggybacking off the advice given by Cesar,

You can merge both your srep and srep64 methods into one packcmd providing the exes are in the same folder as arc.exe:

Code:
Code:

[External compressor:srep, srep64]
header = 0
packcmd   = {compressor} -a1 -m5f $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = {compressor} -d $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
Here, {compressor} constant holds the name of the compressor used, e.g. -msrep64 will give {compressor} the value of srep64.

Since FreeArc will look for .exe files by default, filling {compressor} with srep64 will have freearc look and successfully detect srep64.exe.
Reply With Quote
The Following User Says Thank You to Masquerade For This Useful Post:
Cesar82 (15-10-2021)
  #6  
Old 15-10-2021, 08:55
fabrieunko fabrieunko is offline
Registered User
 
Join Date: Sep 2021
Location: france
Posts: 217
Thanks: 516
Thanked 78 Times in 71 Posts
fabrieunko is on a distinguished road
thanks to you two. I discovered your forum about 15 days ago while researching the codex installer, and then I am looking at a lot of posts in order to experiment and understand something that was unknown to me 15 days ago. i'm french, i work with google translator and it's not easy to understand everything. but little by little I'm getting there.
Reply With Quote
  #7  
Old 15-10-2021, 14:22
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
@fabrieunko, here on the forum there are several GUI programs for compression that can make your life easier.
I've listed some GUI for you to take a look at if you don't already know: DiskSpan GUI (by Cesar82), Mini Compressor AIO 2021 (by Carldric Clement), Knight Compressor (by bunti_o4u), UltraARC (by Razor129111), among others.
Reply With Quote
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
Best Compression Methods for 'Specific' Games. Q&A JustFun Conversion Tutorials 4641 17-06-2026 18:51
Just Cause 3 GTX590 PC Games - CD/DVD Conversions 45 10-01-2026 02:26
New Fox Kompressor 1.01c Ultimate felice2011 Conversion Tutorials 31 07-06-2023 14:58
ARK: Survival Evolved - Valguero KaktoR PC Games - CD/DVD Conversions 26 07-09-2019 12:25
SuperREP (SREP) Full Info! yasitha Conversion Tutorials 26 08-01-2019 18:49



All times are GMT -7. The time now is 16:46.


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