This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make sure you opened the x64 Native Tools Command Prompt for VS 2022 and then opened MSYS2 shell command | |
echo Compiling ffmpeg... | |
git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg | |
cd ../build | |
mkdir ffmpeg | |
cd ffmpeg | |
CC=cl \ | |
PKG_CONFIG_PATH="$PKG_CONFIG_PATH:../../installed/x264/lib/pkgconfig:../../installed/x265/lib/pkgconfig:../../installed/SDL/lib/pkgconfig" \ | |
../../sources/ffmpeg/configure \ | |
--prefix=../../installed/ffmpeg \ |
OlderNewer