The name given to the process of encoding data such that it uses lesser number of bits as compared to the original representation.

learn more… | top users | synonyms (1)

0
votes
1answer
39 views

Adverse effects of zip bombs?

I have read about zip bombs on Wikipedia, read this question. I tried experimenting to make a zip bomb, but when I unzip the final file, since the unzip is not recursive, it does not do anything to ...
0
votes
1answer
37 views

How to Send An Entire Xcode Project Over Email to Apple

I have an Xcode project (4.6) that I am requesting technical support on from Apple. One requirement of this process is to abstract the issue that you are having into a sample Xcode project and then ...
0
votes
0answers
37 views

Can't decompress a file I compressed using BZip2

I have a program that compresses a file using BZip2 then saves it to a new file. Public Sub Create(ByVal outPathname As String, ByVal filePath As String) Dim msCompressed As New MemoryStream() ...
1
vote
0answers
153 views

Programmatically to compress the video without FFMPEG in Android

Is it possible to programmatically compress video using standard functions, such as in the IOS AVAssetExportSession, not using FFMPEG
0
votes
0answers
15 views

Compression IIS 7.5 dotnet 4 [closed]

please help. We have a new site (http://www.linktivate.net) that both firebug and fiddler report as compressed. Both include the request and response headers needed for gzip. However when testing ...
2
votes
0answers
303 views

zlib inflate returns Z_DATA_ERROR “Incorrect header check”

I'm trying to develop my own SPDY support implementation on a web server, SPDY is a Google experimental protocol for reducing latency in loading web pages. Client/server interaction happens through a ...
0
votes
0answers
27 views

Compression or Streaming over MTP

Is there a way to transfer data via MTP, when the file size is not known (e.g. on-the-fly compression) or infinite (e.g. streaming) According to my knowledge both is not possible: For transferring ...
0
votes
0answers
75 views

searching an lzw encoded file

I am looking to alter the lzw compressor to enable it to search for a word in an LZW encoded file and finds the number of matches for that search term. For example if my file is used as ...
2
votes
2answers
25 views

“Priming” or “Training” a compression algorithm to be used for compression/decompression?

I'm trying to work out if there is a compression algorithm that can be trained beforehand, where you can use the trained data to compress and decompress data. I don't know exactly how compression ...
1
vote
1answer
243 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 ...
-4
votes
1answer
53 views

What is the purpose of .ZIP files? [closed]

Now, I understand how they work. For ex, a string like 'the dog is in the dog' we notice 'the' and 'dog' appear twice and could be assigned single-character variables or something. But, once you have ...
4
votes
3answers
213 views

Choosing a compression algorithm to implement [closed]

I've been given some coursework to implement a compression algorithm of my choice. It can be any language, however the languages I know best would be Java, followed by C. It will be evaluated based on ...
1
vote
1answer
65 views

Fastest possible way to transfer a large directory over VPN

I have a problem. Everyday I have to upload my whole source code (it is a directory with several directories and files) to a server over VPN. The size of source code is around 250 MB. What I do ...
0
votes
1answer
40 views

Compression for short number strings

Does anyone know of a compression for very short number/binary strings? For example, I would like to compress any numbers (0-9) or binary of i.e. 3,2,6,4 or I would like to compress numbers or binary ...
1
vote
1answer
83 views

letter dictionary for javascript lzw compression, “only-use-these-chars”-string

Good day to all of you readers and helpers, i want to make use of a javascript function i recently found, its LZW compressing a string. function lzw_encode(s) { var dict = {}; var data = (s + ...
0
votes
1answer
90 views

Compression json in nodejs

I have a server in nodejs written using connect. I am exposing some data as json. I have to compress the data before sending. I used the compress function in connect but I am not sure how to check the ...
0
votes
0answers
108 views

Enabling gzip compression to org.apache.soap

Hi I'm trying to enable gzip compression to my org.apache.soap.Message. Does anybody know how to do this. I tried some post like soapmessage-gzip-implementation but didn't work for me Main method ...
0
votes
1answer
36 views

Flash imported images have incorrect file sizes

I've just exported a JPG image from Photoshop using the "Save for Web" feature. I got the image down to 58kb. When I import it into Flash and go into it's Properties to change the compression, the ...
5
votes
1answer
65 views

Is there a advantage to storing a compressed file in the database

Background on the problem. The database is PostgreSQL 9.1 Data is large amounts of text(web page mark-up language) The column is bytea So I can store compress the text using PHP's gzcompress and ...
0
votes
1answer
156 views

c++ boost gzip in-memory binary compression

I am trying to compress a data in an array using boost iostream and gzip, here is my code: struct String_sink : public boost::iostreams::sink { std::string& s; ...
0
votes
1answer
83 views

Resolution from Size and pixels of an image

Is there any formula to calculate image resolution, if provided with image size and image height and width. I googled for an answer, but didnt get much of a help. Got one formula, but if i calculate ...
-2
votes
1answer
52 views

how to convert binary data into string format in j2me

I am using the gzip algorithm in j2me. After compressing the string I tried to send the compressed string as text message but the size was increasing drastically. So I used base64 encoding to convert ...
3
votes
2answers
122 views

Haskell finding the correct number in list

So I want to put in two parameters into this function, a list and the position of the item that I want to print. listNumber [1,2,3,4,5,6] 2 >> 3 I have tried this problem by doing this ...
-4
votes
1answer
56 views

text oriented file compression software development [closed]

I want to develop a text compression software that achieves higher compression rates than that of the existing ones like 7zip,rar etc. I need the steps to perform this operation and i need to know ...
0
votes
1answer
76 views

Is there any support for .Z compression in C#/.net [duplicate]

I am aware of GZipStream but, it appears to only support .gz compression. Does anyone know of a way to compress a file to .Z compression format from within C#? (I have also seen the ChilKat commercial ...
0
votes
1answer
65 views

Is there a way to store gzip's dictionary from a file?

I've been doing some research on compression-based text classification and I'm trying to figure out a way of storing a dictionary built by the encoder (on a training file) for use to run 'statically' ...
0
votes
1answer
93 views

Can zlib create tar file, on Windows?

Have zlib for Visual Studio on windows. Can I create a tar compressed file? If so, what is the proper file extension for a tar file compressed with zlib. (I see that gzip can do this and has the ...
0
votes
0answers
174 views

javascript - zip a Blob with zip.js

I need to store a lot of text in WebSQl, so I decided to compress the text with zip.js and store the compressed Blobs From the documentation you can compress a blob as follows function ...
5
votes
2answers
126 views

JPEG image compression

I am looking at the problem of reducing storage space when storing multiple JPEG images together as a single bigger image. The basic intuition is that images tend to have some similarities (like ...
1
vote
1answer
59 views

Efficient compression and representation of key value pairs to be read from 1D barcodes

I'm currently writing an application for Windows Mobile which needs to be able to pick up key value pairs from 1D barcodes (configuration settings). The less barcodes need to be scanned, the better. ...
1
vote
3answers
59 views

Is there a way to 'compress' an lm() class for later prediction?

Is there a way to 'compress' an object of class lm, so that I can save it to the disk and load it up later for use with predict.lm? I have an lm object that ends up being ~142mb upon saving, and I ...
-5
votes
1answer
65 views

LZ compression technique

HELLO guys I was trying to implement LZ compression....and was trying to compress some files using it....but I am having some logical problem... I seriously dont have any idea about how the data is to ...
1
vote
1answer
89 views

Django Compressor and Deployment

Some things about Django Compressor are not clear to me. 1) Should I use it only on development environment? If not, does it mean that it will compress and aggregate static js/css files at every ...
0
votes
1answer
225 views

OpenCV - Possible Options for Image Compression

thanks for taking the time to read my post. I'm working on a little project that is going well but as an optimisation exercise I would like to reduce the size of some of the JPEG's i'm outputting. ...
0
votes
2answers
122 views

Compress files from mobile and upload it to server?

I have developed an application for backup and restore on IOS and ANDROID! for backup i am just looping all files and uploading to server directly and to restore, doing the same to retrieve the data's ...
1
vote
0answers
39 views

Plot in matlab to show compressed file size vs uncompressed file size of file.gz [closed]

I have a fairly large set (100 or so) of example.gz files where I want to look at the compressed file size vs uncompressed file size (or vice versa) plot on matlab. I've been thinking of simply ...
1
vote
2answers
173 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
1answer
79 views

PERL LZW compression with output codes are 9 bits long

From the Page : http://www.verypdf.com/document/pdf-format-reference/pg_0072.htm I am trying use the same details to compress and decompress , it not working any perl modules (LZW) Source ASCII ...
0
votes
0answers
59 views

Use Lagarith for encoding

I have a loss less mp4 file (YUV 4:4:4) encoded using x264 with me. I want to convert it to loss less avi using Lagarith. Earlier, to compress using lagarith, I used virtualDub. But that option now ...
2
votes
1answer
627 views

Bitmap compressed with quality=100 bigger file size than original

I am trying to send an image to a server. Before sending it, I am reducing its size and quality, and then fixing any rotation issue. My problem is that, after rotating the image, when I save it, the ...
0
votes
1answer
33 views

Compress a file and access through all mobile platform?

You know using Winrar you can compress files in windows and extract it in Unix! likewise is there any compression format available in mobile to compress and access it to all mobile platform's. thank ...
0
votes
1answer
44 views

HBase eats out my space?

I am currently beginning to use HBase & HDFS to store my data. My first experiment is to import data in a 12GB txt file (no compress) to HBase 'test' table which replication is set to 3 (HDFS ...
0
votes
1answer
33 views

.NET PackagePart object - what does it contain?

What does a PackagePart object include ? Does it contain the actual data of the file associated to it or just the Uri, content type and compression option?
0
votes
1answer
156 views

LZ78 algorithm - overwriting dictionary after filling dictionary?

I have a question about methods of implementation LZ78 algorithm - is there any possibility to add new 'keywords' after filling dictionary to first indexes? Look at my code: //adding new word to ...
0
votes
1answer
93 views

AviFile Library creates avi bigger than 2 GB- not useable

I am using the AviFile Library to make a avi video from Bitmaps, comming from Kinect. The file size gets really high, and over 2 GB I cannot open these files anymore. I will have to compress these ...
0
votes
1answer
219 views

.htaccess DEFLATE Not working [closed]

I am trying to compress html etc. from htaccess. # compress text, html, javascript, css, xml: AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType ...
-1
votes
1answer
89 views

How to decide a suitable compression format in c#? [closed]

I see for multi page tiff creation. CCITT4 is used predominantly used everywhere. Also many have a need to use CCITT4 than LZW compression in GDI. Which compression is suitable for which ones? I see ...
0
votes
0answers
70 views

How to determine image/movie compression ratio after rotation which causes stretching

So I am currently working with videos on an Android tablet and have effectively got it to render the video on a specified angle such as 47' etc. How ever the issue is when the movie has rotated, it is ...
0
votes
2answers
221 views

How to implement zopfli for a better gzip compression?

Google says Zopfli gives a better gzip-functionality and it's compatible with all browsers (decompression is the same, compression takes a lot longer, but you get an additional 5-10% smaller static ...
0
votes
0answers
121 views

Optimal compression ratio of URL String

I want to compress and decompress URL string of variable length with good compression ratio and good compression speed and I also have to find what is optimal compression ratio that can be applied to ...

1 3 4 5 6 7 62