Created
May 12, 2017 01:15
-
-
Save wwwins/4957e40c58f5c215ceb0196546d6bdd3 to your computer and use it in GitHub Desktop.
avi2webm
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
# https://trac.ffmpeg.org/wiki/Encode/VP9 | |
# audio: libvorbis | |
# brew install ffmpeg --with-libvpx --with-libvorbis | |
# lossless and without audio | |
ffmpeg -i test.avi -lossless 1 -an output.webm | |
# Variable Bitrate: 1 MBit/s | |
ffmpeg -i test.avi -c:v libvpx-vp9 -b:v 1M -an output.webm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment