Skip to content

Instantly share code, notes, and snippets.

@abdollahpour
Created September 21, 2013 06:52
Show Gist options
  • Save abdollahpour/6647944 to your computer and use it in GitHub Desktop.
Save abdollahpour/6647944 to your computer and use it in GitHub Desktop.
FFmpeg tips
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