首先参考这篇文章 https://www.jianshu.com/p/155a50cee595 安装好 nginx
安装 ffmpeg
下载地址 https://ffmpeg.org/releases/ffmpeg-4.1.tar.bz2
解压到 /opt/ffmpeg
tar -jxvf ffmpeg-4.1.tar.bz2
安装 yasm
yum install nasm -y
cd ffmpeg-4.1
./configure
make
make install
修改文件/etc/ld.so.conf 中增加/usr/local/ffmpeg/lib.
使其生效:ldconfig
加入环境变量
vim /etc/profile
最后一行加入:
export FFMPEG_HOME=/usr/local/ffmpeg
export PATH=$FFMPEG_HOME/bin:$PATH
使环境变量生效:source /etc/profile
安装 OpenSSL
yum -y install openssl
yum install openssl-devel -y