centos7源码安装ffmpeg

简介:

如果正常只编译安装ffmpeg 会出缺少lib264 的情况

  • 系统版本:centos7

其他软件版本:
  ffmpeg-3.0
  cmake-3.5.0
  last_x264
  x265_1.9
   yasm-1.3.0

相关地址:

官网:http://ffmpeg.org/
百度云下载地址:https://pan.baidu.com/s/1wlMFUV6olcDgVM5bMG0xRQ 密码:tcnn

  ffmpeg是一个很强大的音视频处理工具, 官网介绍ffmpeg是:一个完整的、跨平台的解决方案,可以记录、转换和传输音频和视频。ffmpeg既可以播放视频,也提供命令行工具来处理视频,另外还有强大的视频处理库用于开发,

一、安装cmake (编译c++源码工程的工具,编译libx265库用到)

1. 查看 cmake 版本。安装相应组件
[root@cxm ~]# yum install cmake* -y
[root@cxm ~]# cmake –version

如果大于3.5就不用安装cmake

2. 解压
[root@cxm ffmpeg]# tar -xvf cmake-3.5.0.tar.gz
[root@cxm ffmpeg]# cd cmake-3.5.0
3. 安装
[root@cxm cmake-3.5.0]# ./configure
[root@cxm cmake-3.5.0]# make && make install
4. 查看版本
[root@cxm cmake-3.5.0]# cmake --version
cmake version 3.5.0
CMake suite maintained and supported by Kitware (kitware.com/cmake).

二、安装 yasm 库(提高编解码效率)

1. 解压
[root@cxm ~]# cd ffmpeg/
[root@cxm ffmpeg]# tar -xvf yasm-1.3.0.tar.gz
2. 安装
[root@cxm ffmpeg]# cd yasm-1.3.0

[root@cxm yasm-1.3.0]# ./configure

[root@cxm yasm-1.3.0]# make && make install

三、安装 h264 编解码库

1. 解压(注意:解压后文件名的变化)
[root@cxm ffmpeg]# tar -xvf last_x264.tar.bz2
2. 安装(目录为 x264-snapshot-20160319-2245/
[root@cxm ffmpeg]# cd x264-snapshot-20160319-2245/

[root@cxm x264-snapshot-20160319-2245]# ./configure --enable-shared

[root@cxm x264-snapshot-20160319-2245]# make && make install
3. 相关文件位置

h264库的头文件在/usr/local/include
动静态库在/usr/local/lib
x264.pc库的配置文件在/usr/local/lib/pkgconfig

四、安装 h265 编解码库

1. 解压
[root@cxm ffmpeg]# tar -xvf x265_1.9.tar.gz
2. 运行脚本
[root@cxm ffmpeg]# cd x265_1.9/build/linux/

make-Makefiles.bash multilib.sh

[root@cxm linux]# sh make-Makefiles.bash

执行时会弹出界面选项, 按'c'再按'g'键保存退出

3. 安装
[root@cxm linux]# make && make install
4. 问题

如果make时候报错
x265_1.9/source/common/param.cpp:55: 错误:‘char* strtok_r(char, const char, char**)’先被声明为‘extern’后又被声明为‘static’
修改x265_1.9/source/common/param.cpp的55行, 把"static"关键字去掉

5. 相关文件

h265库的头文件在/usr/local/include

动静态库在/usr/local/lib
x265.pc库的配置文件在/usr/local/lib/pkgconfig

五、安装 ffmpeg

1. 解压
[root@cxm ffmpeg]# tar -xvf ffmpeg-3.0.tar.bz2
2. 设置环境变量
[root@cxm ffmpeg]# cd ffmpeg-3.0

[root@cxm ffmpeg-3.0]# export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/

(这只是临时的,如果想永久生效写在/etc/profile内)

3. 安装
[root@cxm ffmpeg-3.0]# ./configure --disable-debug --enable-libx264 --enable-libx265 --enable-gpl --enable-shared

[root@cxm ffmpeg-3.0]# make && make install
4 复制文件
[root@cxm ~]# cp /usr/local/lib/libx* /lib64/

[root@cxm ~]# cp /usr/local/lib/libav* /lib64/

[root@cxm ~]# cp /usr/local/lib/libsw* /lib64/

[root@cxm ~]# cp /usr/local/lib/libpostproc* /lib64/
5. 问题

在configure的时候
有报错:enabled program:
解决:是否有ffplay(没有的话,yum install SDL, 后再重新configure

你可能感兴趣的:(centos7源码安装ffmpeg)