我正在尝试按照本教程在 centos 上安装 ffmpeg。
http://ffmpeg.org/trac/ffmpeg/wiki/CentosCompilationGuide
但是当我跑步时。
cd ~/ffmpeg_sources
git clone --depth 1 git://github.com/mstorsjo/fdk-aac.git
cd fdk-aac
autoreconf -fiv
./configure --prefix="$HOME/ffmpeg_build" --disable-shared
make
make install
make distclean
我收到以下错误。
cd . && /bin/sh /root/ffmpeg_sources/fdk-aac/missing --run automake-1.9 --foreign
Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac'
make: *** [Makefile.in] Error 1
[root@worldnewstranslate fdk-aac]# make install
cd . && /bin/sh /root/ffmpeg_sources/fdk-aac/missing --run automake-1.9 --foreign
Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac'
make: *** [Makefile.in] Error 1
我无法让它为我的生命工作任何帮助请为什么我可能会遇到这些错误。
谢谢