Created
September 21, 2013 06:52
-
-
Save abdollahpour/6647944 to your computer and use it in GitHub Desktop.
FFmpeg tips
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You want to simply convert any kind of video for android device: | |
ffmpeg -i <input> -s 480x320 -vcodec mpeg4 -acodec aac -strict -2 -ac 1 -ar 16000 -r 13 -ab 32000 -aspect 3:2 <output> ffmpeg -i <input> -s 480x320 -vcodec mpeg4 -acodec aac -strict -2 -ac 1 -ar 16000 -r 13 -ab 32000 -aspect 3:2 <output> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment