After using BrowserPlus.LZMA.compress()... how do you decompress the file?
Running demo http://browserplus.yahoo.com/demos/squeezr/intro, it compresses my selected files in .lz format.
However, 7-zip or ZipCentral can't decompress it and doesn't recognize format .lz.
How do you decompress the file?
Hi Jorge,
The .lz format that is produced by the LZMA service is compatible with the lzip tool, available here:
http://www.nongnu.org/lzip/lzip.htmlthe easylzma library also ships with some command line tools and could decompress these files:
http://github.com/lloyd/easylzmaThe library we use is "easylzma", it also supports the "LZMA Alone" format as well, but is currently hardcoded to lzip. the two are trivially different, with the header of the two being the main difference.
Here's the line that hardcodes us to LZIP:
http://github.com/browserplus/bp-lzma/blob...ervice.cpp#L172hth,
lloyd