centos7 安装 ffmpeg 最新版 shell 懒人系列-6

特别注意:本人很懒就搞了些懒人办法

1.建立个文本。shell.sh,复制下面代码保存,打开终端。

2.sudo chmod +x sheell.sh

3.sudo ./shell.sh (建议直接root用戶运行)

去官网下最新版本 http://www.ffmpeg.org/download.html

(本文是ffmpeg-4.4版本)

#!/bin/bash
##i-bash是标准的shell标头
##i-ffmpeg安装

xz -d ffmpeg-release-amd64-static.tar.xz

tar -xvf ffmpeg-release-amd64-static.tar

mv ffmpeg-4.4-amd64-static ffmpeg

chmod -R 777 ffmpeg

mv ffmpeg /home/ffmpeg

sed -i '$a''export PATH=$PATH:/home/ffmpeg' /etc/profile

source /etc/profile

touch ffmpeg.sh

echo '#!/bin/bash'>ffmpeg.sh

sed -i '$a''export PATH=$PATH:/home/ffmpeg' ffmpeg.sh

chmod +x ffmpeg.sh

cp -rf ffmpeg.sh /etc/profile.d/

rm -rf ffmpeg.sh

exit

下载指南

centos7 安装 ffmpeg 最新版 shell 懒人系列-6

centos7 安装 ffmpeg 最新版 shell 懒人系列-6

懒的写字看图说话

上一篇:Ubuntu 设置sudo 免密码


下一篇:6月22日Linux权限管理