Changes between Version 8 and Version 9 of CompilationGuide/macOS
- Timestamp:
- Feb 2, 2019, 11:09:13 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CompilationGuide/macOS
v8 v9 25 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. 26 26 27 === Specifying additional options ===28 29 You can run {{{brew info ffmpeg}}} to see additional install options, e.g. in order to enable {{{libfdk_aac}}}, which is highly recommended. Here is an example with some additional options:30 31 {{{32 brew install ffmpeg \33 --with-fdk-aac \34 --with-freetype \35 --with-fontconfig \36 --with-libass37 }}}38 39 27 === Updating ffmpeg === 40 28 … … 43 31 {{{ 44 32 brew update && brew upgrade ffmpeg 45 }}}46 47 48 === Installing Git `HEAD` ===49 50 If you want to install the latest Git version of `ffmpeg` instead of the release version, follow the above directions, but add a --HEAD to the install command. For example:51 52 {{{53 brew install ffmpeg --with-tools --with-fdk-aac --with-libvpx --with-x265 --HEAD54 33 }}} 55 34
