0
votes
3answers
69 views
Compress data before storage on Google App Engine
I im trying to store 30 second user mp3 recordings as Blobs in my app engine data store. However, in order to enable this feature (App Engine has a 1MB limit per upload) and to kee …
0
votes
2answers
79 views
Unzipping part of a .gz file using python
So here's the problem. I have sample.gz file which is roughly 60KB in size. I want to decompress the first 2000 bytes off this file. I am running into CRC check failed error cuz I …
15
votes
2answers
631 views
Gzip vs Deflate (zlib) revisited
HTTP 1.1 definitions of GZIP and DEFLATE (zlib) for some background information:
" 'Gzip' is the gzip format, and 'deflate' is the zlib format. They
should probably have called th …
1
vote
1answer
65 views
c++ and zlib static library
I am making a c++ (windows devc++) application which downloads a file using libcurl. I have included the libcurl source code and library to mu executable, so no external dll is req …
0
votes
2answers
61 views
Separating Code To Be Organized
I'm building a zipper application, but it has a declaration that I want to separate it in another file (compress-file.m), but only when I separate the files I got an error when com …
2
votes
2answers
63 views
Finding the end of a zlib compressed stream
I'm working on an NMDC client (p2p, DC++ and friends) with Qt. The protocol itself is pretty straightforward:
$command parameters|
Except for compression:
"ZPipe works by s …
0
votes
2answers
40 views
Error Deflate And Inflate With zLib
Hello,
I'm trying to compile the zpipe.c example in my Linux(Ubuntu 8.04) with gcc, but I'm getting some errors, take a look:
[ubuntu@eeepc:~/Desktop] gcc zpipe.c
/tmp/ccczEQxz.o …
2
votes
3answers
83 views
Python zlib output, how to recover out of mysql utf-8 table?
In python, I compressed a string using zlib, and then inserted it into a mysql column that is of type blob, using the utf-8 encoding. The string comes back as utf-8, but it's not c …
0
votes
2answers
82 views
zlib iPhone - files get crap in beginning
I've got a couple of .tgz-files in my bundle that I want to uncompress and write to file. I've got it working - sort of. The problem is that the file written gets 512 bytes of crap …
4
votes
7answers
192 views
free non-gpl data compression libraries
Hello, i'm writing project that stores data, so i need to compress it. I've tried zlib but it's bottleneck of my project. So maybe there is faster solution. I don't need a great co …
0
votes
3answers
295 views
How to decompress Gzip string in ruby?
Zlib::GzipReader can take "an IO, or -IO-lie, object." as it's input, as stated in docs.
Zlib::GzipReader.open('hoge.gz') {|gz|
print gz.read
}
File.open('hoge.gz') do | …
0
votes
1answer
30 views
Use Zlib library to compress large include files experience?
I'm interesting in experience of others developers with Zlib, and compressing large files, and how it will depends on application processes, is that going to make application slowe …
0
votes
0answers
148 views
missing rails gem: zlib not found on snow leopard, but shows in ports
Trying to start development on a snow leopard machine. Have reinstalled and built ruby and ruby on rails via
hivelogic post
Prior to sorting out my own rails app, I created a tes …
0
votes
3answers
123 views
VB6 API Declaration Path
I have the following declaration in a Module:
Private Declare Function gzopen Lib "ZLIB.DLL" (ByVal filePath As String, ByVal mode As String) As Long
The following code line in …
1
vote
1answer
103 views
How to retrieve data from a attached zip file in Blackberry application?
I am using eclipse to build application for Blackberry. I attached a zip file with my application. Please help me, I don't know how to retrieve data form the zip file in applicatio …
