当我在ffmpeg源目录中运行./configure命令时,会得到以下错误:
gcc is unable to create an executable file. If gcc is a cross-compiler, use the --enable-cross-compile option. Only do this if you know what cross compiling means. C compiler test failed.
If you think configure made a mistake, make sure you are using the lates
在运行应用程序时,我面临以下错误:
./Application: /lib/x86_64-linux-gnu/libavutil-ffmpeg.so.54: version `LIBAVUTIL_FFMPEG_54' not found (required by /usr/local/lib/libopencv_videoio.so.3.3)
./Application: /lib/x86_64-linux-gnu/libswscale-ffmpeg.so.3: version `LIBSWSCALE_FFMPEG_3' not found (required by /usr/
我在clear lubuntu上编译了ffmpeg,并在eclipse中将libs附加到我的项目中时,我得到了一堆错误:
/usr/local/lib//libavformat.a(mov.o): In function `mov_read_sbgp':
/root/ffmpeg/libavformat/mov.c:2039: undefined reference to `av_malloc'
/usr/local/lib//libavformat.a(mov.o): In function `mov_read_dac3':
/root/ffmpeg/libavfor
我在android studio中使用VLC,在Linux中使用FFMPEG,我需要修改FFMPEG c文件中的一些代码,但当我在android中编译FFMPEG和运行VLC应用程序时,它使用的是原始版本的FFMPEG,而不是修改后的版本。
我的编译代码是:
./configue
sudo make install
make
我什么都试过了为什么会这样?如果我删除FFMPEG文件并编译它,从某个地方恢复FFMPEG文件,也许还有另一种方法可以编译,或者如何找到FFMPEG的源代码?但是我不知道该怎么做?
我的系统是Ubuntu 11.10。
我在某种程度上遵循了这个指南:
我还修复了这里提到的一些错误(因为我安装了最新的ffmpeg 0.10.2):
然而,当我尝试做一个make时,我得到了3个错误,都是基于我在上面的问题链接中所做的修复。特别是:
cap_ffmpeg_impl.hpp:1485:32: error: ‘av_format_write_header’ was not declared in this scope
cap_ffmpeg_impl.hpp:524:64: error: too many arguments to function ‘int avformat_op
我从链接:下载了ffmpeg-android
我遵循了在该下载文件夹中可用的自述文件中给出的步骤。
我尝试用android r5和r6编译ffmpeg,但是得到了相同的错误,如下所示:
arm-linux-androideabi-gcc is unable to create an executable file.
C compiler test failed.
If you think configure made a mistake, make sure you are using the latest
version from SVN. If the latest version
在将Ubuntu从18.04升级到20.04之后,ffmpeg不再工作了。运行带有任何参数(或无参数)的FFmpeg将输出以下消息:
$ ffmpeg
ffmpeg: error while loading shared libraries: libcdio.so.17: cannot open shared object file: No such file or directory
它似乎在寻找一个过时的版本的libcdio,这是奇怪的,因为我所有的包是最新的,包括libcdio18。查看为libcdio18安装的文件,似乎存在版本不匹配:
/usr/lib/x86_64-linux-gn
我想设计一个Android应用程序,可以播放和编辑FFMPEG命令的视频。但我不知道如何在Android上使用FFMPEG。我尝试过从谷歌搜索的许多方法,但它们太旧了,无法实现。现在,FFMPEG的最新版本是2.1.1,Android-NDK的版本是r9b。我的操作系统是Linux mint 15。我如何在我的操作系统上使用eclipse IDE来实现一个拥有FFMPEG最新解码器和编码器的Android应用程序?