How can I apply lossy compression on a video using the command-line?
When I use the default compression tool available in Ubuntu (ie. package the video into a tar.gz, zip, etc. file), I don't get much of a difference in size, so I suppose they use lossless compression?
gzip
andzip
use lossless compression. The files don't shrink because their encoding uses compression already (already compressed data usually don't shrink, they might even grow). The only solution would be re-encoding them with a lower quality (e.g. usingffmpeg
). Which video encodings are we talking about? – kos Dec 15 '15 at 10:57