Skip to content

Instantly share code, notes, and snippets.

@wwwins
Created May 12, 2017 01:15
Show Gist options
  • Save wwwins/4957e40c58f5c215ceb0196546d6bdd3 to your computer and use it in GitHub Desktop.
Save wwwins/4957e40c58f5c215ceb0196546d6bdd3 to your computer and use it in GitHub Desktop.
avi2webm
# 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