Lempel–Ziv–Markov chain Algorithm is an compression algorithm which uses a dictionary compression. Is a default 7-zip algorithm.
11
votes
6answers
18k views
Free compression library for C# which supports 7zip (LZMA) [closed]
I have a program (written in C#) that reads/writes its data directly (direct file access without server) to firebird database files. For a better exchange I want to (un)compress them on import/export ...
10
votes
5answers
2k views
why is LZMA SDK (7-zip) so slow
I found 7-zip great and I will like to use it on .net applications. I have a 10MB file (a.001) and it takes:
2 seconds to encode.
Now it will be nice if I could do the same thing on c#. I have ...
7
votes
4answers
4k views
Why is *.tar.gz still much more common than *.tar.xz?
Whenever I see some source packages or binaries which are compressed with GZip I wonder if there are still reasons to favor gz over xz (excluding time travel to 2000), the savings of the LZMA ...
7
votes
1answer
2k views
C++ lzma compression and decompression of large stream by parts
I need to do lzma compression and decompression on the fly. I'm receiving a large file via qnetworkmanager in Qt and I need to decompress it as the data stream is downloading.
When I receive part of ...
5
votes
2answers
2k views
How to enable LZMA compression in Flash Player 11?
As mentioned in release notes to Flash Player 11, developers added LZMA compression support.
Question is how can one enable this support? Maybe there's an mxmlc option? Or more steps?
Simply setting ...
4
votes
3answers
2k views
Is there a library avaliable for compression in Javascript
I am looking for sending data from server in a compressed format to client(with ajax requests), and than decompress that data with a browser?
Is there a library for this?
I am not looking for ...
4
votes
3answers
979 views
LZMA SDK decompress for iOS (xcode) using too much RAM
I am trying to use the LZMA SDK in an iPhone/iPad app, my starting point was the LZMA example project for iPhone provided by Mo Dejong, available here:
https://github.com/jk/lzmaSDK
Original was here: ...
3
votes
2answers
8k views
How to use LZMA SDK to compress/decompress in Java
http://www.7-zip.org/sdk.html
This site provide a LZMA SDK for compress/decompress files, I would like to give it a shot but I am lost.
Anyone got experience on this? Or a tutorial? Thanks.
3
votes
1answer
2k views
How does the LZMA compression method work?
I need to know details about LZMA compression algorithm. I know its general concept, but I need some examples explaining it in detail. Can anybody please help me to get more information?
Thank you.
3
votes
1answer
1k views
LZMA SDK Progress
In my application, I'm compressing ~400Mb of data with LZMA SDK. Naturally, this takes some time. Even after massive Googling, I wasn't able to find any information how to get live progress ...
3
votes
1answer
3k views
Decompress a 7zip archive with multiple files & directories in Java
I want to decompress a 7zip/lzma archive with multiple files & directories in Java. I tried to use the official 7zip SDK, but I failed, as my programming skills are not that advanced for this ...
3
votes
2answers
212 views
LZMA Compression For VB6/VBA?
Looking to LZMA compress encrypted files in my Access 2000 application. Does anyone know the simplest way to do this in VB6/VBA or know of any source code?
2
votes
4answers
2k views
LZMA Or 7zip in Delphi
Is there any Library in Delphi to handle LZMA (or 7zip)files including creating self extracting EXEs
There are some sources code at 7zip.orgin (c++ java c#) but i want them in delphi
BUT i want ...
2
votes
2answers
3k views
Using LZMA SDK in C++
I am trying to use LZMA SDK to compress a file in my program. I have download the SDK but I don't know how to use it. Can anyone tell me what steps I need to take to make this work? Any help would be ...
2
votes
2answers
461 views
Which algorithm is using in standard ZIP?
Have googled, wikied and reading RFC of ZIP, but can't find any info about the exact algorithm which is used in ZIP.
I have found info about ZIP == TAR + GZIP
But, I'm confused by this info.
...
2
votes
2answers
1k views
Reverse Engineering: How do I identify an unknown compression method?
I'm with a group of modders attempting to reverse engineer and mod a Blu-Ray player. We're stuck because the firmware code seems to be compressed, and the decompression code is nowhere to be found. ...
2
votes
1answer
2k views
Can you help with creating a zip archive with the LZMA (7zip) SDK?
I am trying to use the LZMA SDK to create a zip archive (either .zip or .7z format). I've downloaded and built the SDK and I just want to use the dll exports to compress or decompress a few files. ...
2
votes
1answer
1k views
Compression issue when saving anR project
I solved the problem by moving R installation directory out of disk C. Thanks Joris for the great suggestions! I think the R core team should also take this as a bug and do something against the ...
1
vote
2answers
634 views
Compiling/Debugging LZMA
I need to compile the C++ implementation of LZMA (7Z). Does anybody know how to do that? where should I download it from?
Thanks so much in advance.
1
vote
2answers
343 views
Choosing an appropriate compression scheme for data transfer over JSON
After some comments by David, I've decided to revise my question. The original question can be found below as well as the newly revised question. I'm leaving the original question simply to have a ...
1
vote
3answers
1k views
Using LZMA SDK in C++
Can i use LZMA SDK in my application without using any dll libraries such as 7z.dll or 7za.dll so that my application's executable file should not have any dependencies?
If it is impossible where can ...
1
vote
1answer
612 views
how to compres a Folder uses lzma sdk?
http://www.7-zip.org/sdk.html
i can uses it compress a file ,but can not find function of compress a Folder
1
vote
3answers
831 views
How can I compress many PDF Files into a single 7z using LZMA in JAVA
I'm trying to Zip many PDF files (representing tne same report containing same images and titles. Only some numbers differ from a PDF to another ) into a single "7z" (or any other extention) file ...
1
vote
1answer
1k views
Installing/compiling pylzma (lzma python binding)
I've already posted this question on the authors website, but I thought I might ask here as well.
I've been trying to install pylzma with this setup:
Windows 7 x64
Python 2.6.6 x64
the amd64 ...
1
vote
1answer
312 views
Trying to compile LzmaUtil.c from LZMA SDK
I wish to use LZMA natively in my own C util. I've downloaded LZMA SDK from http://www.7-zip.org/sdk.html (version 9.12 beta) - but I simply fail to compile their LzmaUtil.
This is what I've tried, ...
1
vote
2answers
1k views
How to get the uncompressed size of an LZMA2 file (.xz / liblzma)
I'm looking for a way to get the uncompressed stream size of an LZMA2 / .xz file compressed with the xz utility.
I'm using liblzma from Windows/Linux for this task, so I guess I'm looking for some ...
1
vote
1answer
906 views
How To Decompress a LZMA Compressed File Using ByteArray Method In As3?
This is the code that I'am using to compress/decompress files :
package {
import flash.display.Sprite;
import flash.events.Event;
import flash.net.FileFilter;
import flash.net.FileReference;
import ...
1
vote
2answers
1k views
How to unzip an LZMA compressed zip file on Windows Phone 7?
I'm developing a Windows Phone 7 project which uses a local SQLite database. The database is ~40MB uncompressed so I zipped it using maximum compression (Deflate) down to ~20MB. Here's my code ...
1
vote
2answers
759 views
Listing the contents of a LZMA compressed file?
Is it possible to list the contents of a LZMA file (.7zip) without uncompressing the whole file? Also, can I extract a single file from the LZMA file?
My problem: I have a 30GB .7z file that ...
1
vote
0answers
26 views
How to use lzma2 in python code?
I know there is a module called pylzma. But it only support lzma, not lzma2.
My current solution is using subprocess.call() to call 7z program.
Is there a better way?
1
vote
0answers
36 views
Makefile error compiling LZMA on Mac OSX
I've downloaded the latest LZMA SDK and I'm trying to compile it on Mac OSX, although get an error with any of the makefiles included in the tar ball. Here's the error with any makefile I try and run:
...
1
vote
0answers
62 views
Is there any way to keep compressed file extension using “SevenZip.LzmaAlone” class compression?
I'm working on big files compression using Java. It's mandatory (for me) to compress my files unto 7z files (LZMA compression).
To do that, I'm using the 7z Java SKD. I'm calling the ...
1
vote
0answers
40 views
pylzma stream (de)compression buffer size
There's an example usage of stream (de)compression at github.com/fancycode/pylzma/blob/master/doc/usage.txt, however, it always reads by 1 byte, which, obviously, can get relatively slow.
However, ...
1
vote
0answers
185 views
Is there support to compression or decompress .xz files in LZMA?
1) I want to write a decompression codec for hadoop which can decompress .xz files with lzma2.
2) I come to know that LZMA2 compression library supports .xz format.
3) But recently I came across a ...
1
vote
3answers
690 views
Make Custom Self-Extractor
I'll explain what I want, and then I'll explain how I'm trying to achieve it. I want to know if I'm gonig about this the right way, or if there is something much easier.
What I want: a ...
1
vote
1answer
304 views
ZIPX Compression Method 2048
I have a zipx file that is using compression method 2048. I know that the ZIPX format uses one of four compression methods (LZMA, BZIP2, PPMd, WavPack). The compression method number associated with ...
1
vote
1answer
855 views
How to pass password to decode LZMA (7zip) encrypted archive in C / Objective-C?
Does anyone know how to pass password to decode function in LZMA SDK?
0
votes
2answers
80 views
What's that long garbled string of character and the end of Ocra or Ruby2Exe?
Here's a part of it...
__END__
24295
TVqQAAMAAAAEAAAA//8AALgAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAgAAAAA4fug4AtAnNIbgBTM0hVGhpcyBwcm9ncmFt
...
0
votes
2answers
1k views
0
votes
1answer
304 views
Decompressing with PyLZMA
I compress my files using this script
import pylzma, struct
i = open(path+fileName,'rb')
o = open(path+zipName+'.zip','wb')
data = i.read()
c = pylzma.compressfile(data, eos=1)
result = c.read(5)
...
0
votes
1answer
307 views
LZMA compression in a Windows Forms application
I have used NSIS to create installers before and I love the LZMA compression it supports.
Now I'm learning VS and was wondering if we can compress files using LZMA or any other way?
I'm primarily ...
0
votes
1answer
577 views
LZMA compression settings details
I really need to know what each lzma parameter (mf, fb, lp, ...) means. I could not find any good documentation in the internet. I need details of this algorithm. the most detailed one is:
...
0
votes
1answer
327 views
How to build “lzma sdk” on Linux
I want to use 7-zip archive for my application and for that i download lzma sdk. Trying to build on Linux (Debian) but can't find how. I looking in lzma.txt but I can't understand how complete the ...
0
votes
1answer
4k views
How to use the 7z SDK to compress and decompress a file
According to this link How do I create 7-Zip archives with .NET? , WOPR tell us how to compress a file with LMZA (7z compression algorithm) using 7z SDK ( http://www.7-zip.org/sdk.html )
using ...
0
votes
1answer
347 views
Pipeling compression and ftp transfer
I am writing a utility that will zip a file (or set of files) using the LZMA sdk then send the file off to a ftp server. Usually the speed of the compression is faster than the speed of the ftp ...
0
votes
0answers
29 views
change single file lzma maker to multiple in c#
guys i use this code to create my files for App updater.
with this code i can just select one files every time and also the output copied to clipboard and zipped files crated in same directory near ...
0
votes
0answers
30 views
LZMA(2) Multithreading in Python 3.3?
I am looking into using the lzma module in Python 3.3 to compress binary file streams en mass. So far I could not find a way to let the compressor run in multiple threads; Google and SO seem to have ...
0
votes
0answers
230 views
lzma compress/Uncompress from memory c++
I have a code working, but i'm not entirely satisfied of the result, so I figured I could ask some questions here.
Here are my two functions :
void compress(string nameSrc, string nameDst){
...
0
votes
1answer
63 views
iceberg with lzma compression
I use iceberg to distribute my packages for OS X platform.
I want to compress my files with lzma algorithm like in nsis (for windows).
I researched this but I couldn't find anything about it. ...
0
votes
0answers
45 views
How to make archive from more than one file with LZMA C SDK
I'm trying to use lzma sdk to create a archive from some files. but a have looked all the demo of LZMA C SDK, and find there is a demo "C\Util\Lzma" shows how to make a file into 7z archive, but the ...