Hello
I did some investigation about a your ago and did not find ability to
play
video at VGA resolution, more over than 10fps.
For myself I use one of next examples convertion to get reasonable
media file playing at
freerunner ( you can find it in my previous messages about this
problem).
For playing I use internal media player or ES FileManager player.
#
#Basic Android video player. This application plays video files from
the SD card.
#File should be MPEG4 or 3GPP with H.264 or H.263 and MP3, AAC, or AMR
audio. Videos need to be 480×352 or smaller to play back properly.
#Best 16x9 for old ffmpeg
#ffmpeg -i '/tmp/infile' -s 352x200 -aspect 352:288 -padtop 44 -
padbottom 44 -vcodec h263 -acodec aac -ac 2 -b 339k -r 12.5 -ar 8000 -
ab 12.2k '/tmp/outfile.3gp'
#Best 16x9 for new ffmpeg
# ffmpeg -i '/tmp/infile' -s 352x200 -vf 'pad=0:288:0:44' -vcodec
h263 -acodec aac -ac 2 -b 339k -r 12.5 -ar 8000 -ab 12.2k -strict
experimental '/tmp/outfile.3gp'
#Best 4x3 for old ffmpeg
#ffmpeg -i '/tmp/infile' -s 352x264 -aspect 352:288 -padtop 12 -
padbottom 12 -vcodec h263 -acodec aac -ac 2 -b 339k -r 12.5 -ar 8000 -
ab 12.2k '/tmp/outfile.3gp'
#Best 4x3 for new ffmpeg
#ffmpeg -i '/tmp/infile' -s 352x264 -vf 'pad=0:288:0:12'-vcodec h263 -
acodec aac -ac 2 -b 339k -r 12.5 -ar 8000 -ab 12.2k '/tmp/outfile.3gp'
Alexandre