博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在Linux上下载和安装AAC音频编码器FAAC
阅读量:5055 次
发布时间:2019-06-12

本文共 1653 字,大约阅读时间需要 5 分钟。

Linux上FAAC的安装

安装

  1. 下载
    http://downloads.sourceforge.net/faac/faac-1.28.tar.gz
  2. 解压
    tar zxvf faac-1.28.tar.gz
    ./bootstrap
    ./configure --prefix=/usr/local/ --enable-shared
    make && make install
  3. 运行faac

    [root@localhost faac-1.28]# faac Freeware Advanced Audio Coder FAAC 1.28 Usage: faac [options] [-o outfile] infiles ...     
    and/or
    can be "-", which means stdin/stdout. See also: "faac --help" for short help on using FAAC "faac --long-help" for a description of all options for FAAC. "faac --license" for the license terms for FAAC.

如果出现上述结果则表示正确

错误处理

  1. 我在make的时候就出现了两次错误,总结出来跟大家分享

    In file included from mp4common.h:29,              from 3gp.cpp:28: mpeg4ip.h:126: error: new declaration ‘char* strcasestr(const char*, const char*)’ /usr/include/string.h:367: error: ambiguates old declaration ‘const char* strcasestr(const char*, const char*)’ make[3]: *** [3gp.o] Error 1 make[3]: Leaving directory `/home/rexevol/FFMEPG_preinstall_toolkit/faac-1.28/common/mp4v2' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/rexevol/FFMEPG_preinstall_toolkit/faac-1.28/common' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/rexevol/FFMEPG_preinstall_toolkit/faac-1.28' make: *** [all] Error 2

    解决办法:http://blog.csdn.net/yymcool/article/details/7185857

  2. 运行错误:

    error while loading shared libraries: xxx.so.0:cannot open shared object file: No such file or directory

    解决办法:http://blog.csdn.net/newthinker_wei/article/details/8843133

    详细解决办法:

    vi /etc/ld.so.conf.d/facc.conf
    添加一行faac库的安装地址,如:/usr/local/lib
    执行/sbin/ldconfig -v

转载于:https://www.cnblogs.com/wayns/p/faac-install.html

你可能感兴趣的文章
SQL excel
查看>>
POJ 1328 Radar Installation
查看>>
html5之canvas画图基础
查看>>
JS原型
查看>>
队列学哪个好
查看>>
Linux 系统信息监控统计命令小结
查看>>
Grunt的配置和使用(一)
查看>>
JavaScript小括号、中括号、大括号的多义性
查看>>
css做鼠标指向图片图片放大但边框不放大
查看>>
nodeJs hello world
查看>>
ANT 打jar包
查看>>
【技术】HTML5 canvas --- clock(1)
查看>>
操作系统的发展与分类
查看>>
东方元鼎付淼:移动互联网创业门槛已降低
查看>>
C#访问MySQL数据库的方法
查看>>
数学图形(2.25)三维悬链线与悬链面
查看>>
aspxGridview 根据单元格值得不同,设置单元格字体的颜色(设置和读取值)
查看>>
JS获取QueryString(Jquery)
查看>>
C# 接口应用及意义
查看>>
C#System.Text.RegularExpressions.Regex使用(一) .
查看>>