Thread: Cls bcm & zlib
View Single Post
  #18  
Old 07-03-2023, 00:09
Gehrman's Avatar
Gehrman Gehrman is offline
Registered User
 
Join Date: Jan 2020
Location: Save Palestine
Posts: 78
Thanks: 1,375
Thanked 89 Times in 48 Posts
Gehrman is on a distinguished road
BCM v2.03

Note: BCM works excellent for compressing the SFD and USM video format.

Source
Code:
BCM - A BWT-based file compressor, v2.03
Copyright (C) 2008-2023 Ilya Muravyov

Usage: bcm [options] input [output]

Options:
  -b#[k,m] Block size in KB or MB (default: 32m)
  -l#      Minimum match length for LZP (default: 128)
  -t#      Number of worker threads (default: auto)
  -c       Write to standard output
  -d       Decompress
  -f       Force overwrite of output file
  -x-      Disable X86 preprocessor
Download

FreeArc
Code:
[External compressor:bcm]
header    = 0
default    =-b64m -x-
packcmd   = bcm.exe -c {options} $$arcdatafile$$.tmp <stdout>
unpackcmd = bcm.exe -d -c <stdin> <stdout>

Last edited by Gehrman; 12-03-2023 at 17:15.
Reply With Quote
The Following User Says Thank You to Gehrman For This Useful Post:
Masquerade (07-03-2023)