linux离线安装ffmpeg

亲测不会有各种坑!!!

我需要在一台内网环境的centos7.6(192.168.1.33)上安装ffmpeg

可以借助一台有网的服务器,来操作

静态编译FFmpeg

复制代码
./configure --enable-static --disable-shared --prefix=/usr/local/ffmpeg-static
make -j$(nproc)
make install

此时可以看到出现了

复制代码
ffmpeg ffprobe config.h doc/ libav*/ fftools/

打包编译好的二进制文件

复制代码
tar czvf ffmpeg-static.tar.gz /usr/local/ffmpeg-static

在离线服务器上解压即可使用

复制代码
tar xzvf ffmpeg-static.tar.gz -C /usr/local
export PATH=/usr/local/ffmpeg-static/bin:$PATH

查看

复制代码
[root@host-136-64-250-219 ffmpeg]# ffmpeg
ffmpeg version 6.1.1 Copyright (c) 2000-2023 the FFmpeg developers
  built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-44)
  configuration: --enable-static --disable-shared --prefix=/usr/local/ffmpeg-static
  libavutil      58. 29.100 / 58. 29.100
  libavcodec     60. 31.102 / 60. 31.102
  libavformat    60. 16.100 / 60. 16.100
  libavdevice    60.  3.100 / 60.  3.100
  libavfilter     9. 12.100 /  9. 12.100
  libswscale      7.  5.100 /  7.  5.100
  libswresample   4. 12.100 /  4. 12.100
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...

Use -h to get full help or, even better, run 'man ffmpeg'
相关推荐
武汉格发Gofartlic8 分钟前
HFSS许可证状态查询与管理
大数据·运维·人工智能·数据分析·自动化
宇宙的有趣19 分钟前
Fedora SSH 连接时智能防止系统挂起
linux
chen94539 分钟前
EKS生产环境部署基于NLB的traefik网关
运维
淮北4941 小时前
linux系统学习(15.启动管理)
运维·服务器·网络·c++·vscode·学习
zml_20152 小时前
docker 1分钟 快速搭建 redis 哨兵集群
linux·redis·docker·docker-compose
半梦半醒*3 小时前
playbook剧本
linux·运维·服务器·ssh·ansible·运维开发
大喵桑丶3 小时前
Nginx配置学习及多应用场景配置示例
运维·学习·nginx
wanhengidc4 小时前
七夕 云手机:浪漫时光里的科技陪伴
运维·科技·安全·游戏·智能手机
Ronin3054 小时前
【Linux系统】线程控制
linux·线程·线程控制