-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Container format #13
Comments
Hey Yann, Is the format spec implemented in |
The format is implemented into lz4cli.c. |
Where is this file? I don't see it in https://code.google.com/p/lz4/source/browse/#svn%2Ftrunk |
Would that help if functions to create compressed files/stream using latest published specification where given their own source file, separated from command line management ? |
Definitely. The simpler it is to wrap, the better :) On Mon, Jan 13, 2014 at 11:55 PM, Cyan4973 [email protected] wrote:
Steeve Morin |
OK, I've tried to find a way to attach files, but failed. So copying directly from the .h, /* ************************************************** / /* ************************************************** / int LZ4IO_compressFilename (char* input_filename, char* output_filename, int compressionlevel); |
The issue is, what about stream? Is there a way for it to use |
Could you describe what you think would be the best API for your use case ? |
Howdy. Are there plans to resolve the incompatibility between python-lz4 and native-lz4, soon? |
I'm stuck on other projects, but I'll surely review any PR implementing the container format! |
Hey, steeve! I implemented the lz4io methods in the following fork: https://github.com/darkdragn/python-lz4 I have a tag (r119) for the pure branch from you, with lz4io implemented, and the master has incorporated lz4 r121. Right now the methods are compressFileDefault and decompressFileDefault, but tonight I'm going to make a compressFile and decompressFile that allows the user to specify the output file. Right now, the defaults assume the compressed extension is '.lz4'. Please let me know what you think. This is my first time really working on github, or with either c++ or python. |
@steeve @darkdragn are there any plans to merge this PR? :) |
This is fully implemented in the new project here: https://github.com/python-lz4/python-lz4 |
No pressure here, just willing to note that this sentence is no longer true : there is now a container format defined for file or stream compression : http://fastcompression.blogspot.fr/2013/04/lz4-streaming-format-final.html
(It's also present into root directory of SVN directory).
All LZ4 versions are invited to support a common format in order to improve compatibility between versions.
Best Regards
The text was updated successfully, but these errors were encountered: