| 25 | | to get the latest released version with minimal configuration (and library dependency) options. These versions are packaged as Homebrew formulas and will take care of all the dependencies and the installation itself. |
| | 25 | to get the latest released version with minimal configuration (and library dependency) options. These versions are packaged as Homebrew formulas and will take care of all the dependencies and the installation itself. To get the latest Git master version, run: |
| | 26 | |
| | 27 | {{{ |
| | 28 | brew install ffmpeg --HEAD |
| | 29 | }}} |
| | 30 | |
| | 31 | === Additional options === |
| | 32 | |
| | 33 | Since v2.0, Homebrew does not offer options for its core formulae anymore. Users who want to build ffmpeg with additional libraries (including non-free ones) need to use so-called taps from third party repositories. These repositories are not maintained by Homebrew. |
| | 34 | |
| | 35 | The following repositories for ffmpeg are available – refer to the README for additional information about the included options: |
| | 36 | |
| | 37 | * [https://github.com/varenc/homebrew-ffmpeg-with-options varenc/homebrew-ffmpeg-with-options] |
| | 38 | |
| | 39 | The repositories can be added to Homebrew by running `brew tap-pin`, which makes the tap override the main Homebrew formula for `ffmpeg`: |
| | 40 | |
| | 41 | Then, ffmpeg can be installed using `brew install ffmpeg`. Options are available with `brew options ffmpeg` |
| | 42 | |