ffmpeg在linux下的安装,截止到2018-8-8的最新安装方式
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1、下载两个压缩包,并解压
https://ffmpeg.org/releases/ffmpeg-4.0.2.tar.bz2
http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz
tar -xjvf ffmpeg-4.0.2.tar.bz2
tar -xvzf yasm-1.3.0.tar.gz
2、进入yasm目录,安装
cd yasm-1.3.0/
./configure
make
make install
3、进入ffmpeg目录,开始安装
cd ffmpeg-4.0.2
./configure --enable-shared --prefix=/home/test/ffmpeg
make
make install
4、最后一步,lib包加载
耐心等待完成之后执行 cd /home/test/ffmpeg/ 进入安装目录,查看一下发现有bin,include,lib,share这4个目录,其中bin是ffmpeg主程序二进制目录,include是C/C++头文件目录,lib是编译好的库文件目录,share是文档目录,然后进入bin目录,执行 ./ffmpeg -version 查看当前版本的详细信息,默认情况下一般会报libavdevice.so.57: cannot open shared object file: No such file or directory,原因是lib目录未加载到链接到系统库中,系统ld目录列表在/etc/ld.so.conf中,打开文件会发现,里面引用了/etc/ld.so.conf.d/下面所有的.conf文件,比如mariadb-x86_64.conf我们只需要创建一个文件并写入lib路径即可,执行命令: vim /etc/ld.so.conf.d/ffmpeg.conf 然后添加一行内容: /home/test/ffmpeg/lib 之后保存并退出,然后执行 Idconfig 使配置生效,现在再次执行 ./ffmpeg -version 显示就正常了
vi /etc/ld.so.conf.d/ffmpeg.conf
Idconfig
./ffmpeg -version
参考来源:https://www.cnblogs.com/freeweb/p/6897907.html
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)