Skip to content

Instantly share code, notes, and snippets.

@barbietunnie
Last active February 12, 2024 10:58
Show Gist options
  • Save barbietunnie/47a3de3de3274956617ce092a3bc03a1 to your computer and use it in GitHub Desktop.
Save barbietunnie/47a3de3de3274956617ce092a3bc03a1 to your computer and use it in GitHub Desktop.
How to Install FFmpeg

Installing FFmpeg in Windows

  1. Download a static build from here.

  2. Use 7-Zip to unpack it into a folder of your choice.

  3. Open a command prompt with administrator's rights.

  4. Run the command:

    setx /M PATH "path\to\ffmpeg\bin;%PATH%"
    

Be sure to alter the command so that path\to reflects the folder path from your root to ffmpeg\bin. Here's another explanation with pictures

Installing FFmpeg in OS X

  1. Use Homebrew

    brew install ffmpeg
    
  2. Other options:

Installing FFmpeg in Ubuntu

sudo add-apt-repository ppa:mc3man/trusty-media  
sudo apt-get update  
sudo apt-get install ffmpeg  
sudo apt-get install frei0r-plugins  

Helpful links for Ubuntu users:

Source: https://github.com/adaptlearning/adapt_authoring/wiki/Installing-FFmpeg

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment