I have a large 3G .mov file that I need to post online or attach in an email (hopefully the final output will be less then 100mb). What is the best way for me to do this, quickly and for free?

link|improve this question

50% accept rate
feedback

5 Answers

Handbrake is free and will let you select a target size for the output.

link|improve this answer
I guess I should have mentioned that I am using a netbook...my screen resolution is too small, apparently! – Kato Oct 21 '09 at 0:12
Is there a program similar to handbrake without minimum requirements for screen res? – Kato Oct 21 '09 at 0:36
feedback

Netbook with windows?

Try Super Video Converter (go to the end of the provided link and click on "Download SUPER © setup file") or MediaCoder. I would suggest you to install both.

link|improve this answer
Yes, XP. The trouble has passed, but would this have worked to convert the .mov file using the apple pro res 422 HQ codec? – Kato Nov 19 '09 at 3:58
I can't assure you it's going to work with this codec... at least the developers from SUPER and MediaCoder always update their softwares to the codec's latest versions. That's why I said you to try to use both software and see which one works. They are all free. – GmonC Nov 19 '09 at 15:46
feedback

Format Factory is my favorite, for its simplicity and successful converting rate :) http://www.formatoz.com/

link|improve this answer
Thanks for the tips...unfortunately it seems that the Apple Pro Res codec used initially is causing the problem...any advice on that? – Kato Oct 21 '09 at 2:03
feedback

On *nix and mac osx, you can try Mencoder - the encoder that uses the same code base as mplayer. There's a (brief) doc on how to rescale movies here.

link|improve this answer
feedback

FFMPEG!

ffmpeg -i 3G_file.mov -vcodec copy out.mpg

you can limit file output size with the -fs switch. I'd suggest lowering resolution first as it will reduce quality significantly otherwise. You can use -r to change the FPS, and -s to change the size.

Documentation here.

link|improve this answer
Thanks for the tips everyone! Had to go with a very lame solution instead... – Kato Oct 21 '09 at 7:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.