Install FFmpeg on Mac OS
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
Mac OS Tutorials
- Install Mac OS X 10.11 El Capitan in VMWare
- Install Mac OS Virtual Machine in VirtualBox
- Upgrade Mac Operating System
- Install Java on Mac OS
- Install VirtualBox on Mac OS
- How to use Windows-like shortcuts in Mac OS Virtual Machine
- Lightshot - Screenshot tool for Mac and Windows
- How do I take a MacOS Retina screenshot and get the image at its actual size?
- Microsoft Remote Desktop for Mac OS
- Transfer files between computers using Cyberduck on Mac OS
- Connect to the Server with Terminal on Mac OS
- How to use the "hosts" file?
- Are There Ways to Improve Gaming Experience on a Macbook?
- Mac Keyboard Shortcut List to Improve Efficiency
- Install FFmpeg on Mac OS
- How to open Terminal on Mac OS
- Setup environment variables on Mac Os
- Create executable files for Terminal scripts on Mac OS
Show More