If you are looking for easiest way to convert videos for Android over Linux box, this one is probably best option. All you need is ffmpeg installed.
Install ffmpeg
Fedora
rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
yum install ffmpeg -y
Ubuntu
apt-get install fmpeg
e.g Convert .mkv to .avi
ffmpeg -i src.mkv dst.avi
If above does not give you good quality for mov files, try following command.
ffmpeg -i srv.mov -sameq -vcodec msmpeg4v2 -acodec pcm_u8 dst.avi
Do suggest us better ffmpeg syntax for android devices.
This is working for me on Galaxy 3. We wish to make this article better by user comments, same as previous article.
