I know I can get ffmpeg binaries from https://www.osxexperts.net & https://evermeet.cx/ffmpeg/ but I wanted to build static binaries myself.
The instructions provided by both websites, and others, seem overly complicated.
I have the Command Line Tools for Xcode installed, I built & installed pkg-config, and I think I have a working building workflow:
The commands
return
Encoding using h264_videotoolbox & hevc_videotoolbox works. yt-dlp is successfully using /usr/local/bin/ffmpeg
Am I missing something?
I’ve attached the build log.
The instructions provided by both websites, and others, seem overly complicated.
I have the Command Line Tools for Xcode installed, I built & installed pkg-config, and I think I have a working building workflow:
Code:
git clone --branch n8.1 https://git.ffmpeg.org/ffmpeg.git ffmpeg
cd ffmpeg
./configure --prefix=/usr/local/ --disable-doc --enable-network --disable-shared --enable-static --pkg-config-flags="--static"
make -j 10
sudo make install
The commands
which ffmpeg; ffmpeg -version
which ffprobe; ffprobe -versionreturn
/usr/local/bin/ffmpeg
ffmpeg version n8.1
/usr/local/bin/ffprobe
ffprobe version n8.1
Encoding using h264_videotoolbox & hevc_videotoolbox works. yt-dlp is successfully using /usr/local/bin/ffmpeg
Am I missing something?
I’ve attached the build log.