1.下载源码配置环境
下载源码的地址https://ffmpeg.org/download.html#get-sources,或者通过git下载”git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg”
2.编译源码
a. ./configure --disable-x86asm --enable-ffplay
可以看到配置中有ffplay了
b. make
c. make install
如果没有生成ffplay,需要看一下configure文件,文件中有
ffplay_deps="avcodec avformat swscale swresample sdl2"
所以我们需要安装sdl2
brew install sdl2
同时需要修改config.h中的宏定义#define CONFIG_FFPLAY 0,将值改为1.
然后,重新执行abc步骤
网友评论