Tagged Questions
The lossless tag has no wiki summary.
6
votes
4answers
4k views
Lossless JPEG Rotate (90/180/270 degrees) in Java?
Is there a Java library for rotating JPEG files (90/180/270 degrees) without quality degraded?
4
votes
4answers
510 views
Is it possible to perform a lossless rotation on a JPEG Image in PHP?
I need to rotate some existing JPG images. They have already lost some detail, but I now want to rotate them and lose no further detail.
With a little research, it seems the only lossless Image ...
4
votes
5answers
2k views
How do I seamlessly concatenate MP3 streams?
I'm working on a streaming server that will be capable of broadcasting targetted ads. Basically listeners hear the same music, but every, say, 30 minutes comes a block of ads and every listener has ...
3
votes
1answer
184 views
How to make jpeg lossless in java?
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();
...
2
votes
3answers
152 views
A lossless audio codec for embedded devices
I want to transmit a stereo audio stream with 48K rate (which corresponds to 768 Kbit per channel at 16-bit samples) via a radio channel, and feed it to a DAC using a Cortex-M3 microcontroller. While ...
2
votes
1answer
359 views
Is cropping of jpeg images using the PIL lossless?
A simple questions really. If you crop a jpeg image using the Python Imaging Library, is the resulting image recompressed, or is it lossless?
1
vote
0answers
48 views
Lossless JPEG overlay
I already have BetterJPEG for Photoshop, which allows JPEG editing on a semi-lossless level, by only re-encoding the modified blocks.
What I'd like to do is get a library that can dump individual ...
1
vote
2answers
144 views
What C# library provides lossless video compression?
I was wondering what a good library would be for doing c# lossless video compression? I have a lot of hard drive space so that's not an issue. Only lossless will do, no alternatives.thanks
I was also ...
1
vote
1answer
101 views
What happened to all the audio format libraries?
I've been attempting to incorporate some audio format support (other than WAV) into my Java program.
It's really strange, not only is it very hard to find good Java wrappers, but development on ...
1
vote
2answers
419 views
Lossless PDF rotation
is there a way to rotate a PDF 90 degrees losslessly, with Python or using the command line?
I'm looking for a REAL rotation, not just adding a "/ROTATE 90" inside the PDF, because afterwards I have ...
0
votes
1answer
79 views
splitting a flac image into tracks
This is a follow up question to Flac samples calculation.
Do I implement the offset generated by that formula from the beginning of the file or after the metadata where the stream starts (here)?
My ...
0
votes
1answer
213 views
How to create pyramid tiled TIFF from JPEG image in lossless way
I need to create tiled pyramid TIFF file with JPEG-compressed tiles from large JPEG image using lossless jpeg operations i.e. crop in jpegtran. Is there any tool or java code around to perform such ...
0
votes
2answers
449 views
Lossless Join Property
Can someone please explain to me what is meant by the lossless join property in a relation schema?
Is it the ability to maintain the semantics of information/data during the decomposition of ...
0
votes
1answer
208 views
Determining Apple AAC vs. Lossless format using something like Ruby MP4Info gem?
I'm trying to organized music for a radio station and have an iTunes library with a huge number of music files. The files are in various formats (Flac, MP3, AAC, etc.). I need to break all the files ...
0
votes
2answers
157 views
Lossless Image Compression - Image Recovery Fault
My prof. gave me two programs written in C: a lossless compression and a decompression one. I have to implement the Integer Wavelet Transform (I was using the lifting scheme of Haar's function but I ...