The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
38 views

How to decompress lzo_deflate file?

I used LZO to compress reduce output. I tried this: Hadoop-LZO project of Kevin Weil and then used LzoCodec class with my job: TextOutputFormat.setOutputCompressorClass(job, LzoCodec.class); Now ...
0
votes
1answer
32 views

PHP - Compress a txt file while maintaining the file extension

I want to compress a .txt file in PHP while maintaining the file extension. When I decompress the .gz file the extension (.txt) in the .gz file is removed. (test.txt becomes -> test) Here's a example ...
-1
votes
1answer
35 views

Compress and decompress string in c#

I know there is system.io.compression.gzipstream but it accept a stream as arguments. I'm looking for a method that accept string eg. string compress(string stringtocompress,compressionlevel ...
0
votes
1answer
22 views

Resume DEFLATE decompression from flush point

This a question specific to the DEFLATE algorithm, but relates to gzip and zlib. Suppose I have a gzip file that I know has several flush points in the file. Some of which are made with Z_SYNC_FLUSH ...
0
votes
1answer
32 views

LZRW1 decompression in .NET

I have a database with data packed with LZRW1 algorithm and I need to read this data in a C# application. Does anyone know if there is a ready implementation of the LZRW1 decompression for C#?
1
vote
3answers
69 views

Python and zlib: Terribly slow decompressing concatenated streams

I've been supplied with a zipped file containing multiple individual streams of compressed XML. The compressed file is 833 mb. If I try to decompress it as a single object, I only get the first ...
0
votes
3answers
44 views

Compressing string to specified max chars in Java

I want to compress any string, if it has more than 50chars in it. If char size if less than 50, then let it be untouched, else it has to be compressed to required limit (50). I will be inserting ...
0
votes
0answers
41 views

Huffman decoding EOF character hitting NullPointerException

Hi I am working on decoding a file compressed using huffman encoding. We are using EOF characters to indicate we are done with decompressing. Whenever I code for an EOF characters I hit a ...
0
votes
1answer
45 views

Client side data compress/ decompress?

I'm looking for JavaScript implementation of string compress/decompress algorithms, data is created at the client side& stored in hidden fields within HTML forms. I read about gzip, but it will ...
0
votes
1answer
32 views

Uncompressing a Gzip format?

I am facing a problem with Gzip uncompressing. The situation is like this. I have some text in UTF-8 format. Now this text is compressed using gzdeflate() function in PHP and then stored in a blob ...
0
votes
0answers
21 views

Django compressing(once saved) and decompressing images (when served)

I have a limit of number of files i can store in my server, and i have to store lot of images, (about 30-40 per chapter) so i would ask if it is possible to compress images(15-20 images per archive) ...
0
votes
1answer
48 views

In Objective-C, how to read the contents of several files packed inside a ZIP archive, into an NSString variable

In Objective-C (for iOS), is there any way to read the files inside a ZIP archive into memory? So, each file inside the ZIP is a text file. And what I need to do is to iterate through the files ...
0
votes
2answers
72 views

Efficient Rice decoding implementation

I made a naïve implementation of a Rice decoder (and encoder): void rice_decode(int k) { int i = 0 int j = 0; int x = 0; while(i < size-k) { int q = 0; while(get(i) ...
0
votes
1answer
64 views

Am I translating this C code to AS3 properly?

So I found some C code to decompress certain PCM samples, and I want to do the same in AS3. I have tried to do so, but it doesn't seem to be working. I know little to no C, although I'm quite fluent ...
0
votes
2answers
69 views

Representation of a C binary file [closed]

For a homework assignment I created a simple compression/decompression program that makes use of a naive implementation of run-length encoding. I've gotten my program working; compressing and ...
1
vote
3answers
94 views

Concatenate gzipped byte arrays in C#

I have gzipped data which is stored in DB. Is there a way to concatenate say 50 separate gzipped data into one gzipped output which can be uncompressed? The result should be same as decompressing that ...
0
votes
1answer
92 views

How to extract multiple files from 7zip compressed file using pylzma

i have a 7zip compressed file with .bup extension, after extracting this file using 7zip utility it creates a folder which contains two files....i would like to do the same thing with PyLZMA, can all ...
-2
votes
1answer
83 views

lzw decompression in java

i have written code for lzw algo in java. at the time of decompression it goes into infinite loop. the values above 255 are read in different manner. im giving ma code with an example. import ...
0
votes
1answer
36 views

Mule esb file compression/encode and de-compress/decode

I want to use Mule esb to transfer files between Magento and OFbiz. I know hot to use mule to transfer flat files between systems, but could not find helpful tutorial or info on how to use Mule to ...
0
votes
0answers
172 views

How to decompress gzip xhr response in javascript

I have a gzipped response from a web request that I need to decompress in JavaScript (actually, in the success function of an AJAX call - my code is running in a headless browser, and doesn't have the ...
0
votes
4answers
71 views

Decompress an array in Python

I need to decompress an array and I am not sure where to start. Here is the input of the function def main(): # Test case for Decompress function B = [6, 2, 7, 1, 3, 5, 1, 9, 2, 0] A = ...
3
votes
2answers
164 views

ZipInputStream.getNextEntry returns null on some zip files

I have a simple code to extract zip files, it was working just fine as expected but during my test I tried my code with some zip files (fonts, icons and templates I downloaded from internet) just to ...
1
vote
1answer
255 views

System.IO.Compression and ZipFile - extract and overwrite

I'm using the standard VB.NET libraries for extracting and compressing files. It works as well but the problem comes when I have to extract and files exist already. Code I use Imports: Imports ...
1
vote
1answer
104 views

gzuncompress data compressed by java.util.zip.InflaterInputStream

So I'm having trouble decompressing an array of numbers which where originally compressed by the java.util.zip.InflaterInputStream method in java. I know I am doing something wrong, as the output ...
1
vote
1answer
99 views

How to test a directory of files for gzip and uncompress gzipped files in Python using zcat?

I'm in my 2nd week of Python and I'm stuck on a directory of zipped/unzipped logfiles, which I need to parse and process. Currently I'm doing this: import os import sys import operator import ...
1
vote
1answer
160 views

Using decompression library in AS3 via FlasCC

I have an AS3 AIR project in which I need to decompress files using a specific decompression method. Apparently the code for this is found here, in the contrib/blast directory of the zlib ...
1
vote
2answers
178 views

MPEG algorithm in c# [closed]

Basically i am doing the Video compression and decompression in MPEG algorithm in c#. As i new to this compression and decompression case , i am little struggling to achieve the requirement. ...
0
votes
0answers
346 views

Cannot install softwares which require unpacking large files [closed]

I have just recently upgrade my computer from Windows XP to Windows 7, but ever since I haven't been able to install most games. During installation, each game has a different error message but ...
1
vote
1answer
40 views

nio HTTP decompression in Java

Is there any Java library that does nio decompression of GZIP (and possibly other formats) out there? I'm trying to analyze compressed HTTP content and need it to be non-blocking. I found ...
0
votes
2answers
23 views

handling archives in php

I'm working on a distributable framework for websites (a kind of watered-down CMS) that has a module system for adding plugins. I'm going to use uploaded archives to install these modules, and I would ...
1
vote
0answers
71 views

ZPAQ usage vague information

I was trying to test the compression algorithms in matt mahoney's web, but when I want to decompress a file, it only saves the first block. It gives me the following instructions "zpaqd v6.19 ZPAQ ...
1
vote
0answers
155 views

Is there any ability to decompress gzipped string using zlib in nodeJS?

Good day everyone! I'm trying to adapt my code with nodeJS, but got a little issue with decompression. I'm doing a request to server with xhr, and getting a compressed data in response, but I can't ...
0
votes
1answer
74 views

AS3 - Using struct information to decompress a format

I'm wondering, is it possible to use this sort of information in AS3 to decompress a format? I've seen people use C++ to decompress similar formats, but since I'm fluent in AS3 I'd like to know if I ...
4
votes
4answers
192 views

Javascript string compression and PHP/Ruby decompression

Is there a Javascript compression and PHP/Ruby decompression library for strings? I need it because I need to send a very long text string using Ajax on a slow upload link to a web server which uses ...
1
vote
1answer
644 views

download and decompress a zip file in windows phone 8 application

I am working on a windows phone 8 application (phonegap) which downloads a zip file from my server location, I want to unzip this file in my application at runtime to use the files in the archive.
1
vote
2answers
217 views

Decompressed video file is not working in Java

Basically i compress video using the customized compressor class in Java. I have assembled my complete code snippets here. My actually problem is, generated video [ A.mp4] from the decompressed byte ...
1
vote
1answer
65 views

Decompress images to use on a UITableView

I currently working on a project that i need to display large images on a UITableView,this is very common problem for a lot of developers and learning with they threads i reached to the following ...
0
votes
4answers
283 views

unzipping a file with Python and returning all the directories it creates

How can I unzip a .zip file with Python into some directory output_dir and fetch a list of all the directories made by the unzipping as a result? For example, if I have: unzip('myzip.zip', 'outdir') ...
0
votes
0answers
187 views

Inverse DCT Decompression

I am trying to implement the DCT image decompression by reading an already compressed file from a folder. However i am getting some errors. could someone please tell me where i am going wrong? The ...
0
votes
1answer
46 views

What format is an uncompressed MP3 file in?

I have seen that, leaving aside header and other structure data, a compressed file format still has some structure in its main data, and it can be compared to another, uncompressed format. For ...
5
votes
1answer
90 views

Is there a way to test if a string is gzdeflated?

That is to say, a test for whether or not I can safely gzinflate the string. If my compressed data has been tampered with I get a "bad data" warning. I don't want to suppress the warning which means ...
2
votes
2answers
57 views

Is there a Ruby Gem that Decompresses CSS?

Found myself in situation, where I need to decompress CSS through Middleware..(IE *cough *cough) I've Googled, RubyGem'd, Github'd and haven't found anything It seems solutions are a one way ticket. ...
-1
votes
2answers
105 views

How do I decompress a file of unknown compression type? [closed]

As part of an archival project, I've encountered a file of unknown file type. I originally found it extracted from a zip file; however, the file itself does not have any file type suffix, but appears ...
0
votes
1answer
55 views

Are there tools available which compress larger amounts of data into small but complex algorithms which output the original information? [closed]

I remember hearing that sometimes computers will save images in interesting ways. For example an image where some pixels next to each other are the same exact color, then they are stored as ...
0
votes
0answers
462 views

JPEG library in CUDA

I am trying compress and decompress images in CUDA. So far I've found this library: http://sourceforge.net/projects/cuj2k/?source=navbar But there isn't much documentation available. Does anyone ...
-1
votes
1answer
78 views

How to decrypt a file ciphered with a DES [closed]

Please, I ask for your assistance to decrypt a compressed file that has been ciphered by a DES algorithm: unknown version and missed password. It is not clear to me if it is feasible to read that file ...
5
votes
2answers
333 views

Unclarity about usage of LZ functions

Note: this question is about the Windows LZ functions, which are File Management Functions beginning with the prefix LZ: LZOpenFile, LZCopy, LZClose, etc. If Google isn't wrong, these are probably ...
-4
votes
1answer
128 views

GZip Byte Array in VB.NET and UnGzip in PHP [closed]

Here my code in VB.NET: Dim oWeb As New System.Net.WebClient() Dim ms As New MemoryStream() Dim gs As New GZipStream(ms, CompressionMode.Compress) gs.Write(data, 0, data.Length) Dim bytRetData As ...
1
vote
2answers
269 views

Decompress a gzip-compressed HTTP-Response (chunked encoding)

like descriped in the title, I want to decompress a HTTP-Resonse. Here is what I do: receive the http-response check the content-encoding (lets assume its gzip) exctract the content from the ...
0
votes
0answers
227 views

Stack overflow error in RLE decompression

I am practicing for an exam right now, and one of the review problems is to take a string that is compressed using Run Length Encoding, and decompressing, but ONLY USING RECURSION. This problem can ...

1 2 3 4 5