Tagged Questions
0
votes
1answer
303 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)
...
2
votes
2answers
459 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.
...
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 ...
1
vote
3answers
830 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
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 ...
0
votes
1answer
726 views
create a lzma file in python
i need to create a lzma file with the existing .tar file and another metadata file to further create a zip file.