ffmpeg setting for TocuhFlo video player
I've been experimenting all day looking for a good solution to encoding videos for the TouchFlo video player in landscape mode. This is the best I've come up with. If you tweak this and like yours better, please post it.
ffmpeg -i inputfile.avi -f 3gp -vcodec h263 -b 400000 -s 352x288 -r 25 -acodec libfaac -ar 48000 -ab 96k -ac 1 -y outputfile.3gp
|