lossless-compression Questions

3

Solved

I'm looking for a library specialized at compressing Jpegs even further without changing the image. I've found PackJpeg but it doesn't provide any source code and you're not allowed to use it...
Fleuron asked 25/10, 2011 at 20:51

10

Solved

I'm looking for a JavaScript function that given a string returns a compressed (shorter) string. I'm developing a Chrome web application that saves long strings (HTML) to a local database. For tes...
Essene asked 31/12, 2010 at 13:19

1

I have an audio file which has both leading and trailing silence and with the following specifics: Codec: MPEG AAC Audio (mp4a) Channels: Stereo Sample rate: 44100 Hz Bitrate: 253 kbps I want to ...
Ames asked 27/6, 2015 at 21:33

8

Solved

Is it possible to do completely lossless encoding in h264? By lossless, I mean that if I feed it a series of frames and encode them, and then if I extract all the frames from the encoded video, I w...
Lessee asked 15/7, 2011 at 1:27

4

Solved

I have a large file of size 500 mb to compress in a minute with the best possible compression ratio. I have found out these algorithms to be suitable for my use. lz4 lz4_hc snappy quicklz blosc ...
Cleavage asked 3/6, 2016 at 12:28

5

DNA strings can be of any length comprising any combination of the 5 alphabets (A, T, G, C, N). What could be the efficient way of compressing DNA string of alphabet comprising 5 alphabets (A, T, G...

3

Solved

I was recently compressing some files, and I noticed that base64-encoded data seems to compress really bad. Here is one example: Original file: 429,7 MiB compress via xz -9: 13,2 MiB / 429,7 MiB ...
Miksen asked 30/6, 2016 at 13:17

0

I am trying to encode signed values ranging from -256 <-> 255 (i.e. 9 bit data represented by short) with arithmetic encoder, however I have discovered that existing implementations of Ari...
Googolplex asked 14/2, 2018 at 14:39

4

Solved

I understand that JPEG is a lossy compression standard, and that the 'quality' factor controls the degree of compression and thus the amount of data loss. But when the quality number is set to 100...
Naval asked 2/11, 2011 at 14:56

3

Solved

In honor of the Hutter Prize, what are the top algorithms (and a quick description of each) for text compression? Note: The intent of this question is to get a description of compression algorith...
Esparza asked 25/10, 2008 at 14:11

6

Solved

I tried various methods to do data compression when saving to disk some numpy arrays. These 1D arrays contain sampled data at a certain sampling rate (can be sound recorded with a microphone, or a...
Circumsolar asked 14/3, 2014 at 9:18

2

I have a motion-JPEG 2000 file that I need to determine if the creator used lossless compression to create it based on the file itself. I do not have the raw video data to compare to, and I do not ...

5

I've got 100's (maybe 1000's) of products with 10-30 images of each product coming to an online store I've put together. I need to optimize the images' file sizes as much as possible without loosin...
Josefajosefina asked 29/9, 2009 at 16:9

3

I'm doing optimization and Google recommends Lossless compression to images, looking for a way to implement this in Django. Here's the images they specified, I think for it to be done effectively ...
Troubadour asked 12/10, 2015 at 9:36

3

Solved

My friend told me it existed but I could never find it, not sure if he was lying but I'm very interested as to how the proof works. (Yes, I'm one of those people who found out about Huffman coding ...

3

Solved

Can anyone please explain arithmetic encoding for data compression with implementation details ? I have surfed through internet and found mark nelson's post but the implementation's technique is in...

1

Background: I have an implementation of a generic LZSS backend on C++ (available here. The matching algorithm I use in this version is exceedingly simple, because it was originally meant to compres...
Our asked 10/7, 2015 at 18:13

1

Solved

I understand the LZ77 and LZ78 algorithms. I read about LZ4 here and here and found code for it. Those links described the LZ4 block format. But it would be great if someone could explain (or dir...
Qualmish asked 20/2, 2015 at 18:9

3

Solved

This C program is just 143 characters long! But it “decompresses” into the first 10,000 digits of Pi. // Created by cheeseMan on 30/11/13. long a[35014],b,c=35014,d,e,f=1e4,g,h; int main(int ar...
Perique asked 29/11, 2013 at 14:3

2

I want my program to be able to use zlib, lzma, lzo and bzip2 compression algorithms. Is there any compression library for C which simlifies working with multiple algorithms (like libmcrypt suppor...
Ryurik asked 2/5, 2013 at 23:7

1

Solved

I have a need to compress a video stream to transfer it from a C++ library to a Java platform (Android) by network and decompress it there. The requirements are as follows: The library must be av...

1

Google PageSpeed recommends the images on my web page could be optimized. The lossless compression would save an average of 11%, however my images are created with the following FFmpeg comman...
Civilized asked 31/10, 2012 at 11:33

5

Solved

Does anyone of you know a lossless compression algorithm, which produces headerless outputs? For example do not store the huffman tree used to compress it? I do not speak about hard coded huffman t...
Wimsatt asked 18/2, 2009 at 15:52

2

Solved

I am trying to losslessly compress an image, and in order to take advantage of regularities, I want to convert the image from RGB to Y'CbCr. (The exact details of what I mean by RGB and Y'CbCr are ...
Callum asked 12/5, 2012 at 19:18

1

Is there someone that can tell me how to write 'jpeg' file using lossless compression in java? I read the bytes using the code below to edit the bytes WritableRaster raster = image.getRaster(); ...
Bazemore asked 1/10, 2011 at 7:36

© 2022 - 2025 — McMap. All rights reserved.