Skip to content

Instantly share code, notes, and snippets.

@niklasb
Created January 29, 2012 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niklasb/1700088 to your computer and use it in GitHub Desktop.
Save niklasb/1700088 to your computer and use it in GitHub Desktop.
Convert video to MP4 for Android
#!/bin/bash
if [[ $# != 2 ]]; then
echo >&2 "Syntax: $0 infile outfile"
fi
ffmpeg -i "$1" -s 480x320 -vcodec mpeg4 -acodec libfaac -ac 1 -ar 16000 -r 15 -ab 32000 -aspect 3:2 -threads 12 "$2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment