linux 先编译 再安装,Linux下编译安装FFmpeg
官網介紹
FFmpeg is the leading multimedia framework, able to?decode,?encode,?transcode,?mux,?demux,?stream,?filter?and?play?pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation. It is also highly portable: FFmpeg compiles, runs, and passes our testing infrastructure?FATEacross Linux, Mac OS X, Microsoft Windows, the BSDs, Solaris, etc. under a wide variety of build environments, machine architectures, and configurations.
下載安裝
1、下載最新源碼包并解壓
$ wget http://ffmpeg.org/releases/ffmpeg-4.0.2.tar.bz2
$ tar jxvf ffmpeg-4.0.2.tar.bz2
2、需要先安裝openssl和yasm
$ yum install openssl-devel -y
$ wget http://www.nasm.us/pub/nasm/releasebuilds/2.13.01/nasm-2.13.01.tar.xz
$ cd nasm-2.13.01.tar.xz
$ ./configure
$ make && make install
3、再安裝x264
$ git clone https://github.com/mirror/x264.git
$ cd x264
$ ./configure --enable-shared --enable-static
$ make && make install
4、最后安裝ffmpeg
$ cd ffmpeg-4.0.2
$ ./configure --enable-gpl --enable-nonfree --enable-libx264 --enable-openssl
$ make && make install
5、添加共享鏈接庫
$ echo "/usr/local/lib" >> /etc/ld.so.conf ; ldconfig
6、安裝成功
$ ffmpeg
$ ffmpeg -codecs
輸入ffmpeg打印了相關版本等信息,表示安裝成功
總結
以上是生活随笔為你收集整理的linux 先编译 再安装,Linux下编译安装FFmpeg的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [云炬创业管理笔记]第四章把握创业机会测
- 下一篇: [云炬创业管理笔记]第四章把握创业机会测