View Single Post
b666m's Avatar
Posts: 1,090 | Thanked: 476 times | Joined on Jan 2010 @ Ingolstadt, Germany
#19
firstly... read the doc:
http://ffmpeg.org/ffmpeg-doc.html#SEC7

secondly the letter in between of width and height is a x.
not any strange x-like sign. ^^

thirdly i would use the whole screen resolution as far as possible in respect of the aspect ratio of the source.
in your case 1280x720 -> 800x450.

at last i would recommend using the mp4-container instead of avi-container and ask google to search for settings of the iphone videos because it is using the same encoding - just different resolution.

something like this:
Code:
ffmpeg -i opt.flv -acodec aac -ab 128k -vcodec mpeg4 -b 1200k -mbd 2 -aic 2 -cmp 2 -subcmp 2 -s 800x450 opt.mp4
attention:
ubuntu's ffmpeg may not contain the aac-codec due to license issues. you may have to compile it yourself with aac or use mp3 (as ac3 isn't well-supported in n900)

Last edited by b666m; 2010-02-26 at 15:12.