What are the best tools for converting any video format to iphone compatible?

Extra points for GUI tools. This is intended to be used by a senior citizen with low patience for "computer stuff". So, easy of use is a must.

Oh, and I should mention, this would be for windows.

link|improve this question

50% accept rate
feedback

4 Answers

up vote 20 down vote accepted

Handbrake is fanstatic. It has an iPhone preset that yeilds pretty good size (about 350Mb per hour of video) which looks great on my OG iPhone and also on my 36" 720p TV. Not sure how it'll scale to 1080p. Handbrake is really easy to use but offers a ton of extra features if you need them. I just stick with the preset, though. It runs great on Intel Macs and Windows, but if you have a PowerPC-based Mac, it runs on the slow side.

One caveat is that it works best with MPEG sources, but you may be able to use other sources as well. Not sure about Windows Media formats. It also (no longer) works with DRM, so you need another program (like Ripit) if you are consuming DVDs.

link|improve this answer
+1 HandBrake is excellent – dyve Jul 16 '09 at 18:31
2  
+1 handbrake kicks ass :-) – Bruce McLeod Jul 19 '09 at 13:33
feedback

iPodME is fantastic if you just want to drag a video into the input area and hit convert. I recommend it to all my non-techy friends.

link|improve this answer
Seem very good, and simple too! – Decio Lira Jul 19 '09 at 22:50
1  
Yeah, I really like it. Handbrake is my tool of choice, but since the OP wanted ease of use, I think iPodME is definitely a solid choice – BenA Jul 20 '09 at 8:28
This is what you want! SMall, super-simple - perfect! – Riri Nov 3 '09 at 15:05
feedback

I use FormatFactory for all media conversions. It is free and not so hard to use... Has defaults for iphone video...

link|improve this answer
feedback

I use this shell script on linux/osx but it should work with cygwin

#!/bin/bash

ffmpeg -i "$1" -acodec libfaac -ab 128k -s 640x480 -vcodec libx264 -vpre hq -vpre ipod640 -threads 0 -f ipod "$1.m4v"

It requires ffmpeg and current x264 and facc libs.

There is more on ffmpeg here

link|improve this answer
feedback

protected by Community Aug 1 '11 at 7:15

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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