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 01-08-2017, 08:15
shazzla shazzla is offline
Registered User
 
Join Date: Nov 2010
Location: Hunnia
Posts: 292
Thanks: 524
Thanked 102 Times in 78 Posts
shazzla is on a distinguished road
SREP parameter - I need help !

Greetings !

Im in trouble with SREP.
I want to use it with the following parameter :

srep64 -a8 -m5f -l512 -d8g:h4gb:l32:c8 my_data.dat deduplicated.srep

but in command line ,like this :

arc.exe a -ep1 -dsgercpn -s; -lc- -di -i2 -msrep:a8:m5f:l512:d8g deduplicated.arc source.dat

The question is ,how can i pass h4gb:l32:c8 to the command-line ?

Obviously -msrep:a8:m5f:l512:d8g:h4gb:l32:c8 doesnt work.

Editing the arc.ini works ,but its a no-go ,because i change those parameters frequently...

Last edited by shazzla; 01-08-2017 at 08:18.
Reply With Quote
Sponsored Links
  #2  
Old 01-08-2017, 09:20
Edison007's Avatar
Edison007 Edison007 is offline
Registered User
 
Join Date: Mar 2014
Location: Solar System - Planet Earth
Posts: 30
Thanks: 0
Thanked 56 Times in 19 Posts
Edison007 is on a distinguished road
-msrep:a8:m5f:l512:d8g:dh4gb:dl32:dc8
Reply With Quote
The Following User Says Thank You to Edison007 For This Useful Post:
shazzla (01-08-2017)
  #3  
Old 01-08-2017, 09:29
shazzla shazzla is offline
Registered User
 
Join Date: Nov 2010
Location: Hunnia
Posts: 292
Thanks: 524
Thanked 102 Times in 78 Posts
shazzla is on a distinguished road
WoW !
Thanks my friend !!


@Edison007 : from where did you get this knowledge ? Is there any documentation ?

Last edited by shazzla; 01-08-2017 at 09:35.
Reply With Quote
  #4  
Old 01-08-2017, 11:16
vint56 vint56 is offline
Registered User
 
Join Date: May 2011
Location: almaty
Posts: 52
Thanks: 145
Thanked 55 Times in 31 Posts
vint56 is on a distinguished road
shazzla
Bat
srep -a8 -m5f -l512 -d8g -dh4gb -dl32 -dc8

Code:
SREP 3.93a beta: huge-dictionary LZ77 preprocessor   (c) Bulat.Ziganshin********com
October 11, 2014    homepage: http://freearc.org/research/SREP39.aspx

Usage: SREP [options] infile [outfile]
   infile/outfile can be specified as "-" for stdin/stdout
   "SREP [options] somefile" compresses data from somefile to somefile.srep
   "SREP [options] somefile.srep" decompresses data back to somefile
   "SREP [options]" compresses and "SREP -d [options]" decompresses data from stdin to stdout

Options are:
   -m0: only in-memory compression (REP algorithm)
   -m1: fixed-window content-defined chunking with matches checked by VMAC
   -m2: order-1 content-defined chunking with matches checked by VMAC
   -m3: check matches by VMAC digest (compression memory = 7-8% of filesize)
   -m4: check matches by rereading old data (compression memory = 3-4% of filesize)
   -m5/-mx: rereading with byte-accurate matches (compression memory = 7-9% of filesize)
   -l: minimum LZ match length, default 0
   -c: size of hash chunk, by default as small as required to find all these LZ matches
   -aX[/Y]: alloc X bytes of those Y bits will be set per L input bytes for compression accelerator
            Y=0/1/2/4/8/16/32/64, -a0 is slowest but requires least memory
   -ia-: disable I/O acceleration to reduce memory usage (-m5* only)
   -tN: use N compression threads (only for -m1/-m2)
   -dBYTES: dictionary size for in-memory compression (REP algorithm), default 512mb
   -dhBYTES/-dcN/-dlN: size of hash / size of hash chunk / minimum match length for in-memory compression

   -m1..-m5: index-LZ - list of matches saved at the end of compressed file
   -m1f..-m5f: future-LZ - decompression dictionary will hold only future matches
   -m1o..-m5o: I/O LZ - output file used as decompression dictionary
   -memBYTES: amount of RAM used by future-LZ/index-LZ decompression (extra goes into VM file)
      -mem75% AKA -mem75p means "use no more than 75% of RAM" - that's by default
      -mem600mb means itself
      -mem75%-600mb means "use no more than 75% of RAM minus 600 mb"
   -mBYTES: don't store matches larger than BYTES on future-LZ/index-LZ decompression

   -d: decompression (for -m0o..m5o requires only 24 mb of memory besides of OS I/O buffers)
   -i: print info about compressed file: srep -i datafile.srep
   -delete: delete source file after successful (de)compression
   -sBYTES: explicitly specify filesize (for compression from stdin), default 25gb
   -bBYTES: change compression block size, default 8mb
   -index=FILENAME: read/write index of compressed data into separate file
   -temp=[FILENAME]: keep uncompressed data in the file in stdin-to-stdout mode, default srep-data.tmp
   -vmfile=FILENAME: temporary file used by Virtual Memory manager, default srep-virtual-memory.tmp
   -vmblock=BYTES: size of one block in VM temporary file, default 8mb

   -hash=vmac(default)/siphash/md5/sha1/sha512: store hash checksums in every block
   -hash-: don't store/check block checksums
   -mmap: use memory-mapped files for match checking
   -slp[+/-/]: force/disable/try(default) large pages support (2mb/4mb)
   -pc[max_offset]: display performance counters [for matches closer than max_offset]
   -s: save printed stats from overwriting; -s+/-s-/-sX.Y: update stats every X.Y seconds
   -v[0..2]: verbosity level
   -rem...: command-line remark

Last edited by vint56; 01-08-2017 at 11:23.
Reply With Quote
The Following User Says Thank You to vint56 For This Useful Post:
shazzla (01-08-2017)
  #5  
Old 01-08-2017, 11:23
shazzla shazzla is offline
Registered User
 
Join Date: Nov 2010
Location: Hunnia
Posts: 292
Thanks: 524
Thanked 102 Times in 78 Posts
shazzla is on a distinguished road
ok,i was blind ,a little bit. again. :/
thanks.
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
Soma gatosky1620 PC Games - CD/DVD Conversions 2 01-11-2019 05:04
blue screen while compressing using srep aswadd Conversion Tutorials 7 16-12-2017 10:18
[Solved] Disk full in compression algorithm srep aswadd Conversion Tutorials 19 22-09-2016 12:15
Necessary Evil Srep Alash Als Conversion Tutorials 1 18-07-2014 01:41
Commands use in Srep and Precomp red01 PC Games 2 18-06-2013 05:55



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


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