【问题标题】:Cannot install Libtool library used but `LIBTOOL' is undefined trying to install ffmpeg [duplicate]无法安装使用的 Libtool 库,但未定义“LIBTOOL”尝试安装 ffmpeg [重复]
【发布时间】:2013-07-10 20:00:03
【问题描述】:

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

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

谢谢

【问题讨论】:

标签: ffmpeg aac


【解决方案1】:

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

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

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

【讨论】:

    猜你喜欢
    • 2013-03-20
    • 1970-01-01
    • 2013-03-05
    • 2013-09-29
    • 1970-01-01
    • 1970-01-01
    • 2019-06-30
    • 2015-12-22
    • 2015-12-20
    相关资源
    最近更新 更多