Monday 19 March 2012

Samsung GALAXY S Video Conversion

Converting video for the Samsung Galaxy S is as simple as the ffmpeg command below:

 ffmpeg.exe -i %1 -s 800x480 -vcodec mpeg4 -b:v 800k %1.samsung.mp4  

Importantly, the screen and resolution on the AMOLED display require a higher than default quality setting on the converted video. Otherwise you'll end up with a poor result.

As with before, paste the above command into a batch file and use it as a command line utility or as a drop target. You will need ffmpeg installed an on the path. But you knew that already right?

No comments:

Post a Comment