本文介绍了错误:libvpx解码器版本必须为> = 0.9.1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Heyo!
我试图使用以下教程在我的服务器上安装ffmpeg:

当我到达ffmpeg部分并运行./configure命令时,会出现以下错误:

Heyo! I'm trying to install ffmpeg on my server using the following tutorial:https://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuideLucidWhen I reach the ffmpeg part and run the ./configure command it gives the following error:

ERROR: libvpx decoder version must be >=0.9.1

我必须提到,我的服务器有Ubunto 10.10 64bit
我是linux的新手,所以请考虑到:)
非常感谢!

I must mention that my server has Ubunto 10.10 64bitI'm a total newbie in linux so please take it into consideration :)Thanks a lot!

在LordNeckBeard解决方案之后,我们在checkinstall之后出现以下错误:

Following LordNeckBeard solution, I got the following error after the checkinstall:

root@348588:~/libvpx# sudo checkinstall --pkgname=libvpx --pkgversion="$(date +%Y%m%d%H%M)-git" --backup=no--default --deldoc=yes

checkinstall 1.6.2, Copyright 2009 Felipe Eduardo Sanchez Diaz Duran
           This software is released under the GNU GPL.


no--default is an invalid value for --backup

Use --help or -h to get more information


推荐答案

这表示libvpx没有正确安装,或者你有一个旧版本的libvpx版本< 0.9.1。

This indicates that libvpx did not install properly or you have an old version of libvpx that is version <0.9.1.

您的第一步是检查libvpx是否安装。如果安装了以下内容:

Your first step is to check if libvpx did install. If you get the following if it is installed:

$ dpkg -s libvpx | grep Status
Status: install ok installed

如果没有安装:

$ dpkg -s libvpx | grep Status
Status: unknown ok not-installed

可能删除 libvpx-dev 如果存在,它不会干扰ffmpeg检测您编译的libvpx:

It might be a good idea to remove libvpx-dev if present so it doesn't possibly interfere with ffmpeg detecting your compiled libvpx:

sudo apt-get remove libvpx-dev

然后再次尝试安装libvpx: / p>

Then try installing libvpx again:

cd ~/libvpx
make clean
git pull
./configure
make
sudo checkinstall --pkgname=libvpx --pkgversion="$(date +%Y%m%d%H%M)-git" --backup=no --default --deldoc=yes

再次尝试ffmpeg:

Now try ffmpeg again:

cd ~/ffmpeg
make distclean
git pull

然后按照ffmpeg ./ configure 行继续执行指南。

Then continue with the guide as shown beginning with the ffmpeg ./configure line.

这篇关于错误:libvpx解码器版本必须为&gt; = 0.9.1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 02:57