无法安装使用的Libtool库但是`LIBTOOL'未定义尝试安装ffmpeg

时间:2013-07-12 09:51:34

标签: ffmpeg aac

我正在尝试按照本教程在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

我不能让它为我的生活工作任何帮助,请为什么我可能会得到这些错误。

由于

1 个答案:

答案 0 :(得分:0)

嗨我想说安装ffmpeg我们需要一个AAC音频转换器。这个步骤将更容易和准确地编译。你使用的文件并不包含这里的所有编译组件是相当的简单的步骤

libfdk_aac AAC音频编码器。需要配置ffmpeg --enable-libfdk_aac(如果你还包括--enable-gpl,则为--enable-nonfree)。

cd ~/ffmpeg_sources
git clone --depth 1 git://git.code.sf.net/p/opencore-amr/fdk-aac
cd fdk-aac
autoreconf -fiv
./configure --prefix="$HOME/ffmpeg_build" --disable-shared
make
make install
make distclean

完整步骤链接在这里https://trac.ffmpeg.org/wiki/CompilationGuide/Centos