当我跑步
ffmpeg -y -i test.mov -threads 8 -f webm -aspect 16:9 -vcodec libvpx -deinterlace -g 120 -level 216 -profile 0 -qmax 42 -qmin 10 -rc_buf_aggressivity 0.95 -vb 2M -acodec libvorbis -aq 90 -ac 2 OUTPUT_FILE.webm
它返回一个错误,说
Unknown encoder 'libvpx'
我通过macports安装了libvpx,libvorbis,libogg和ffmpeg
最佳答案
您的macports配置不是使用libvpx构建的。尝试卸载ffmpeg并使用Homebrew而不是macports来安装软件包:
brew install ffmpeg --with-libvpx
or
brew reinstall ffmpeg --with-libvpx
然后您的命令应该起作用。