Created
March 4, 2017 07:29
-
-
Save atomize/e68801a2bd06246dbfc1f868e713abba to your computer and use it in GitHub Desktop.
ffmpeg mov to webm
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 $(IN) -c:v libvpx -pass 1 -an -f rawvideo -y /dev/null # Generates ffmpeg2pass-0.log | |
ffmpeg -i $(IN) -c:v libvpx -pass 2 -f webm -b:v 400K -crf 10 -an -y $(OUT).webm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment