You are hereConvert AVI file for Nokia E71 via ffmpeg

Convert AVI file for Nokia E71 via ffmpeg


By julien - Posted on 25 February 2010

Little script for it :

if [[ ! -f "$1" ]]
then
echo $1 doesnt exist
exit
fi
ffmpeg -i "$1" -f mp4 -vcodec mpeg4 -b 350k -s 320x180 -acodec libfaac -ar 48000 -ab 64k -ac 2 "$1.mp4"

It will convert a full folder of avi file :)

Thanks, looked long and hard for a reliable method of converting videos for use on the Nokia E71, the parameters you supply for converting to mp4 with ffmpeg really work.

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img>
  • Lines and paragraphs break automatically.
  • Images can be added to this post.

More information about formatting options