离线
方案②:
ubunt18.04 编译安装 win32/win64 ffmpeg sdk:
sudo apt-get install git mingw-w64* -y
git clone git clone https://gitee.com/mirrors/ffmpeg -b release/6.0
编译win32版本:
./configure --arch=x86 --target-os=mingw32 --prefix=/opt/ffmpeg_install/ --cross-prefix=i686-w64-mingw32-
编译win64版本:
./configure --arch=x86 --target-os=mingw64 --prefix=/opt/ffmpeg_install/ --cross-prefix=x86_64-w64-mingw32-
离线
离线