0

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

我无法让它为我的生命工作任何帮助请为什么我可能会遇到这些错误。

谢谢

4

1 回答 1

0

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

libfdk_aac AAC 音频编码器。需要使用--enable-libfdk_aac 配置ffmpeg(如果还包括--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

于 2014-12-23T18:48:37.697 回答