步骤
- 下载 libx264
git clone https://code.videolan.org/videolan/x264.git
cd x264
- 环境搭建
然后在开始菜单中找到并打开 x64 Native Tools Command Prompt for VS 2019 :
打开 msys2_shell.cmd
-use-full-path
这时会打开 MSYS 的新窗口,先把一些汇编依赖安装好:
pacman -Syu
pacman -S make
pacman -S diffutils
pacman -S yasm
pacman -S nasm
- 编译
生成工程
OPTIONS=“–enable-shared”
CC=cl ./configure $OPTIONS --enable-shared --prefix=/build
编译
make -j 16
安装
make install
清空环境
make clean
参考文献
https://glumes.com/windows-compile-ffmpeg-with-libx264/