You are hereConvert AVI file for Nokia E71 via ffmpeg
Convert AVI file for Nokia E71 via ffmpeg
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.
Post new comment