ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

linux编译ffmpeg动态库

2026/9/15 19:20:07 拓冰建站 浏览量
linux编译ffmpeg动态库

1,获取源码:git clone https://git.ffmpeg.org/ffmpeg.git

2,创建编译目录,并编译、安装,

cd ffmpeg

mkdir build

cd build

../configure --prefix=~/ffmpeg --enable-shared --enable-debug=1 //configure后需要使用的参数可使用configure --help查询

make

make install