Tagged Questions
1
vote
0answers
23 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
44 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
60 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 ...
0
votes
1answer
346 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 ...
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
898 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
1answer
302 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
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 ...
0
votes
1answer
326 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
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 ...
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 ...
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
689 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
827 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
303 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 ...
0
votes
2answers
1k views
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
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. ...
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 ...