Lempel–Ziv–Markov chain Algorithm is an compression algorithm which uses a dictionary compression. Is a default 7-zip algorithm.

learn more… | top users | synonyms

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 ...
1
vote
0answers
27 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?
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
231 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. ...
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: ...
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 ...
1
vote
0answers
63 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
41 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, ...
0
votes
1answer
349 views

Compress a folder recursively as 7z with PyLZMA and py7zlib

Through much trial and error, I've figured out how to make lzma compressed files through PyLZMA, but I'd like to replicate the seemingly simple task of compressing a folder and all of its ...
0
votes
1answer
275 views

What's the difference between 7z and lzma compressors?

7-Zip claims using LZMA as the compression algorithm. However, the LZMA SDK comes with two executables, 7zr.exe and lzma.exe, which have different options/switches and which produce different results ...
0
votes
0answers
159 views

How to archive a directory using lzma sdk in c#? [closed]

My requirement is to archive multiple files into a single 7z archive file. When i tried to archive a.txt, b.txt and c.txt from a folder, lzma sdk compression algorithm is treating them as a single ...
4
votes
3answers
983 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: ...
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 ...
1
vote
1answer
909 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 ...
0
votes
0answers
294 views

LZMA Compression To Protect .swf Files?

I'm a bit new to SWF protection and while googling I found that Sothink SWF Decompiler is used for easy decompilation and can even phrase the .fla file so I got the latest version and found out that ...
0
votes
0answers
55 views

Accessing parts of xz-compressed file

I have a code that takes a file, mmaps it into memory and then reads parts of it. My goal is to make it work with xz-compressed files of this type as well. The file may potentially be quite large and ...
0
votes
1answer
1k views

Custom Minecraft launcher

I want to create my own Minecraft launcher where when the player checks Force Update it downloads a modified minecraft.jar, an updated lwjgl (both not a big problem) and 2 extra folders in your ...
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
305 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
0answers
185 views

using LzmaCompress to make an archive

I'm a lil bit confused with compression methods. I do know how to use this function, and it does output a tinier buffer, but how do I make an archive using the 7zip sdk, with the compressed data? i'm ...
1
vote
1answer
614 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
2
votes
2answers
462 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. ...
1
vote
0answers
186 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 ...
0
votes
1answer
111 views

Can you compress AMF objects with LZMA?

I know Flash 11 has native support for handling LZMA compressed swfs, is there a way to use LZMA compression with AMF objects?
0
votes
1answer
937 views

How do I create 7-Zip archives containing multiple files with .NET?

Here in this post it is mentioned how to Compress and Decompress files using LZMA SDK. Here is the Code : public static void CompressFileLZMA(string inFile, string outFile) { Int32 dictionary = ...
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 ...
0
votes
1answer
329 views

How to write Hadoop Compression/Decompression codec for LZMA2?

I want to write an Hadoop decompression codec for LZMA2 that can read .xz files. This is my assignment and I am totally new to Compression or Decompression codec. I am seeking some guidance on this ...
0
votes
2answers
405 views

Programmatically LZMA decompressing a static LZMA-compressed file

I'm LZMA-decompressing a resource file which I earlier compressed using lzma e <infile> <outfile> -lc0 -lp2 from the terminal and imported to my project. However when applied to this file ...
0
votes
0answers
75 views

LMZA C build and decompression only

How do you compile LMZA for decompression-only? (I'd like to generate a static library in an Xcode project.)
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 ...
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 ...
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 ...
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?
0
votes
1answer
308 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
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
1answer
64 views

LZMA JAX-RS Support

I'm receiving LZMA compressed data via a request to a REST based web service. Is LZMA supported by the jax-rs specification? I'm using the RESTEasy implementation of the JAX-RS spec. My app server ...
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 ...
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 ...
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.
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 ...
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 ...
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
3answers
833 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 ...
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 ...
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, ...
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 ...
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 2