博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下安装FFmpeg
阅读量:6716 次
发布时间:2019-06-25

本文共 837 字,大约阅读时间需要 2 分钟。

FFmpeg官网:

官网介绍

FFmpeg is the leading multimedia framework, able to decodeencodetranscodemuxdemuxstreamfilter 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 across 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、需要先安装yasm

$ yum install yasm

3、安装ffmpeg

$ cd ffmpeg-4.0.2
$ ./configure
$ make
$ make install

4、安装成功

$ ffmpeg
输入ffmpeg打印了相关版本等信息,表示安装成功

 

转载地址:http://xhkmo.baihongyu.com/

你可能感兴趣的文章
菜鸟学Linux 第106篇笔记 cobbler
查看>>
eclipse正常启动tomcat, 访问http://localhost:8080 却报404错误
查看>>
asp.net底层公共方法
查看>>
FlexPaper和swftools合力打造文库系统
查看>>
学习笔记-Redis设计与实现-压缩列表
查看>>
dockerfile实例--openresety
查看>>
Exadata混合列压缩如何处理INSERT和UPDATE
查看>>
Setup Oracle Direct NFS Client
查看>>
CodeIgniter典型的表单提交验证代码
查看>>
宅男程序员给老婆的计算机课程之4:SQL vs NoSQL
查看>>
VIM编辑模式与命令模式
查看>>
python小技巧-基于python本身
查看>>
【C#】使用ADO .Net Entities Framework 与WPF ListBox控件绑定
查看>>
CentOS5.x系统 配置YUM服务器
查看>>
OTS数据迁移验证方案
查看>>
黑客学习笔记教程之一:黑客文化
查看>>
alias别名、时间、screen、echo等——Linux基本命令(3)
查看>>
Access-Control-Allow-Origin与跨域
查看>>
Python正则表达式详解
查看>>
交换机、路由器设备选型总结
查看>>