您好,登录后才能下订单哦!
这篇文章主要介绍“Linux怎么安装ffmpeg”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Linux怎么安装ffmpeg”文章能帮助大家解决问题。
mpeg 是领先的多媒体框架,能够解码、编码、转码、混合、解密、流媒体、过滤和播放人类和机器创造的几乎所有东西。它支持最晦涩的古老格式,直到最尖端的格式。
官网下载:http://ffmpeg.org/download.html
tar -xjvf ffmpeg-4.1.tar.bz2` `cd ffmpeg-4.1/
[root@slave ffmpeg-4.1]# ./configure gcc is unable to create an executable file. If gcc is a cross-compiler, use the --enable-cross-compile option. Only do this if you know what cross compiling means. C compiler test failed. If you think configure made a mistake, make sure you are using the latest version from Git. If the latest version fails, report the problem to the ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net. Include the log file "ffbuild/config.log" produced by configure as this will help solve the problem.
错误的意思是 yasm/nasm 包不存在或者很旧,可以使用–disable-yasm禁用这个选项编译,yasm是一款汇编器,并且是完全重写了nasm的汇编环境,接收nasm和gas语法,支持x86和amd64指令集,所以这里安装一下yasm即可
官网下载:http://yasm.tortall.net/Download.html
tar -xvzf yasm-1.3.0.tar.gz` `cd yasm-1.3.0/` `./configure` `make` `make install
./configure --enable-shared --prefix=/opt/ffmpeg` `make`:编译过程有点长 `make install
/opt/ffmpeg/
下耐心等待完成之后执行 cd /opt/ffmpeg/
进入安装目录,查看一下发现有bin
,include
,lib
,share
这4个目录 bin
是ffmpeg主程序二进制目录 include
是C/C++头文件目录 lib
是编译好的库文件目录 share
是文档目录
./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
执行命令:vim /etc/ld.so.conf.d/ffmpeg.conf
然后添加一行内容:/opt/ffmpeg/lib
之后保存并退出,然后执行 ldconfig
使配置生效, 现在再次执行./ffmpeg -version
显示就正常了
[root@slave ffmpeg-4.1]# ffmpeg -ersion ffmpeg version 4.1 Copyright (c) 2000-2018 the FFmpeg developers built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-28) configuration: --enable-shared --prefix=/opt/ffmpeg-4 libavutil 56. 22.100 / 56. 22.100 libavcodec 58. 35.100 / 58. 35.100 libavformat 58. 20.100 / 58. 20.100 libavdevice 58. 5.100 / 58. 5.100 libavfilter 7. 40.101 / 7. 40.101 libswscale 5. 3.100 / 5. 3.100 libswresample 3. 3.100 / 3. 3.100
vim /etc/profile
:编辑写入↓
PATH=/opt/python364/bin/:/opt/ffmpeg-4/bin/:$PATH
source /etc/profile
:重新读取文件使其生效
which ffmpeg
或者↓
直接输入
ffmpeg
或者↓
使用文件进行测试(文件自备)
ffmpeg -y -i a.wav -acodec pcm_s16le -f s16le -ac 1 -ar 16000 b.wav.pcm
关于“Linux怎么安装ffmpeg”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注亿速云行业资讯频道,小编每天都会为大家更新不同的知识点。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。