11
6
I am trying to convert input.mp4
video to output.mkv
using vp9 codec.
I have install development version of ffmpeg via: brew install ffmpeg --devel
.
ffmpeg -i input.mp4 -vcodec vp9 output.mkv
But I am getting error: Unknown encoder 'vp9'
even the vp9 is included: ffmpeg -codecs
1
brew install ffmpeg --with-libvpx --with-opus
– Joel Purra – 2015-02-21T18:54:56.140