PDA

View Full Version : Compression depression


bigshotprof
07-28-2008, 04:53 PM
Does anyone know a way to severely compress video? I just tried to zip a 370 meg file, and it compressed to about 357.

tokenuser
07-28-2008, 05:15 PM
Does anyone know a way to severely compress video? I just tried to zip a 370 meg file, and it compressed to about 357.Unless it is raw video, it is already compressed. The best you might be able to do is re-encode it at a lower bitrate or framesize. This is not optimal and will result in loss of quality.

Suggest that if you need to get it out in specific sized chunks to someone you create a multipart RAR file.

bigshotprof
07-28-2008, 08:41 PM
Thanks.

slonkak
07-28-2008, 08:49 PM
As Token said, video is already compressed. An alternative to multiple RARs or ZIPs is to split the file.

If you're on a *nix host, you can split the file into 10MB chunks (google "10 megabytes in bytes" to get the number needed for this command):
split -b 10485760 file.avi

Then to put it back together on a *nix host:
cat xaa >> newfile.avi
cat xab >> newfile.avi
cat xac >> newfile.avi
etc.
.
.

Or on a Windows host:
type xaa >> newfile.avi
type xab >> newfile.avi
type xac >> newfile.avi
etc.
.
.