Last active
January 14, 2017 12:34
-
-
Save zhangyuan/2bf52fe5ee8b3c45db681432ec19406c to your computer and use it in GitHub Desktop.
convert video from .avi to .mp4 ( http://superuser.com/questions/525249/convert-avi-to-mp4-keeping-the-same-quality )
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
| ffmpeg -i input.avi -c:v libx264 -crf 19 -preset slow -c:a aac -strict experimental -b:a 192k -ac 2 out.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment