Krevoxa ships the Windows ffmpeg 8.1.2 libraries built by the vcpkg "ffmpeg" port (https://github.com/microsoft/vcpkg), not by a script of our own. They are LGPL: the port's default feature set enables no GPL component, as the configure line below shows (--disable-libx264, --disable-libx265, no --enable-gpl). To reproduce them, install the port on a Windows machine: vcpkg install ffmpeg:x64-windows The exact configure line baked into the avcodec dll we ship: --prefix='C:/vcpkg/packages/ffmpeg_x64-windows' --toolchain=msvc --enable-pic --disable-doc --enable-runtime-cpudetect --disable-autodetect --target-os=win32 --enable-w32threads --enable-d3d11va --enable-d3d12va --enable-dxva2 --enable-mediafoundation --cc=cl.exe --cxx=cl.exe --windres=rc.exe --ld=link.exe --ar='ar-lib lib.exe' --ranlib=':' --disable-ffmpeg --disable-ffplay --disable-ffprobe --enable-avcodec --enable-avdevice --enable-avformat --enable-avfilter --enable-swresample --enable-swscale --disable-alsa --disable-amf --disable-libaom --disable-libass --disable-avisynth --disable-bzlib --disable-libdav1d --disable-libsvtav1 --disable-libfdk-aac --disable-libfontconfig --disable-libharfbuzz --disable-libfreetype --disable-libfribidi --disable-iconv --disable-libilbc --disable-lzma --disable-libmp3lame --disable-libmodplug --disable-cuda --disable-nvenc --disable-nvdec --disable-cuvid --disable-ffnvcodec --disable-opencl --disable-opengl --disable-libopenh264 --disable-libopenjpeg --disable-libopenmpt --disable-openssl --enable-schannel --disable-libopus --disable-sdl2 --disable-libsnappy --disable-libsoxr --disable-libspeex --disable-libssh --disable-libtensorflow --disable-libtesseract --disable-libtheora --disable-libtwolame --disable-libvorbis --disable-libvpx --disable-vulkan --disable-libwebp --disable-libx264 --disable-libx265 --disable-libxml2 --disable-zlib --disable-libsrt --disable-libvpl --disable-vaapi --disable-libzmq --disable-librubberband --enable-cross-compile --disable-static --enable-shared --extra-cflags='-DHAVE_UNISTD_H=0' --pkg-config='C:/vcpkg/downloads/tools/msys2/3e71d1f8e22ab23f/mingw64/bin/pkg-config.exe' --enable-optimizations --extra-cflags=-MD --extra-cxxflags=-MD --extra-ldflags='-libpath:C:/vcpkg/installed/x64-windows/lib' --arch=x86_64 --enable-asm --enable-x86asm This line is read back out of the shipped binary every time this page is published, so it always describes the libraries you actually received.