Created
November 16, 2012 02:07
-
-
Save guerrerocarlos/4083280 to your computer and use it in GitHub Desktop.
ffmpeg commands for iphone-compatible output
This file contains hidden or 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
#Faster Low Quality result in mp4 | |
ffmpeg -i Before.Sunrise.DVDRip.XviD-SChiZO.avi -acodec libfaac -ab 128k -ar 44100 -vcodec mpeg4 -b 1000K -s 640x480 destination.m4v | |
#Better Quality result in mp4 | |
ffmpeg -i input.avi -f mp4 -y -vcodec libxvid -maxrate 1000k -mbd 2 -qmin 3 -qmax 5 -g 300 -bf 0 -acodec libfaac -ac 2 -flags +mv4 -trellis 2 -cmp 2 -subcmp 2 salida.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment