![]() |
|
#1
|
||||
|
||||
|
Does anyone know a way to severely compress video? I just tried to zip a 370 meg file, and it compressed to about 357.
|
|
#2
|
||||
|
||||
|
Quote:
Suggest that if you need to get it out in specific sized chunks to someone you create a multipart RAR file.
__________________
“Simplicity is the ultimate sophistication.” - Leonardo da Vinci "I am a firm believer in the people. If given the truth they can be depended upon to meet any national crisis. The great point is to bring them the real facts...and beer." - Abraham Lincoln "... connect the dots instead of assembling a jigsaw puzzle." - Wil Wheaton |
|
#3
|
||||
|
||||
|
Thanks.
|
|
#4
|
||||
|
||||
|
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): Code:
split -b 10485760 file.avi Code:
cat xaa >> newfile.avi cat xab >> newfile.avi cat xac >> newfile.avi etc. . . Code:
type xaa >> newfile.avi type xab >> newfile.avi type xac >> newfile.avi etc. . .
__________________
/public/slonkak Last edited by slonkak : 07-28-2008 at 07:51 PM. Reason: Made code more clear |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
|||||