o7planning

Install FFmpeg on Mac OS

  1. Install FFmpeg on Mac OS
  • Introduction to FFMpeg
  • Install FFmpeg on Windows

1. Install FFmpeg on Mac OS

To install FFmpeg on Mac OS you need to update and upgrade the HomeBrew tool. This is a software package management tool on Mac OS. Using BREW commands helps you install software packages directly through the internet.
  • What is HomeBrew?
On Mac OS open Terminal and run the following command to update HomeBrew.
brew update

brew upgrade
Next, install FFmpeg:
brew install ffmpeg
FFmpeg has a capacity of about 1GB, so you will have to wait quite a while until the installation process is completed.
When the installation is finished, run the command below to ensure the installation was successful, the result includes the version information of FFmpeg you just installed.
ffmpeg
Output:
ffmpeg version 6.0 Copyright (c) 2000-2023 the FFmpeg developers
  built with Apple clang version 14.0.0 (clang-1400.0.29.202)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/6.0_1 --enable-shared --enable-pthreads --enable-version3 --cc=clang --host-cflags= --host-ldflags= --enable-ffplay --enable-gnutls --enable-gpl --enable-libaom --enable-libaribb24 --enable-libbluray --enable-libdav1d --enable-libjxl --enable-libmp3lame --enable-libopus --enable-librav1e --enable-librist --enable-librubberband --enable-libsnappy --enable-libsrt --enable-libsvtav1 --enable-libtesseract --enable-libtheora --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libxvid --enable-lzma --enable-libfontconfig --enable-libfreetype --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libspeex --enable-libsoxr --enable-libzmq --enable-libzimg --disable-libjack --disable-indev=jack --enable-videotoolbox --enable-audiotoolbox
  libavutil      58.  2.100 / 58.  2.100
  libavcodec     60.  3.100 / 60.  3.100
  libavformat    60.  3.100 / 60.  3.100
  libavdevice    60.  1.100 / 60.  1.100
  libavfilter     9.  3.100 /  9.  3.100
  libswscale      7.  1.100 /  7.  1.100
  libswresample   4. 10.100 /  4. 10.100
  libpostproc    57.  1.100 / 57.  1.100
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...
Related Articles:
  • Cut and split audio and video with Java and FFmpeg