Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

skyfe79/ffmpeg-build-script

Open more actions menu
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

build-ffmpeg-mac

This ffmpeg build script provides an easy way for building ffmpeg on OSX with non-free codecs included.

Requirements

  • XCode 5.x or greater

Usage

./build-ffmpeg-mac --help       Display usage information
./build-ffmpeg-mac --build      Starts the build process
./build-ffmpeg-mac --cleanup    Remove all working dirs

Contact

Tested on

  • Mac OSX 10.9 64Bit XCode 6.1

Example

user@localhost:~/dev/mac/build-ffmpeg-mac$ ./build-ffmpeg-mac --build

building yasm
=======================
Downloading http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz ... Done
$ ./configure --prefix=~/dev/mac/ffmpeg/workspace
$ make -j 4
$ make install

building opencore
=======================
Downloading http://garr.dl.sourceforge.net/project/opencore-amr/opencore-amr/opencore-amr-0.1.3.tar.gz ... Done
$ ./configure --prefix=~/dev/mac/ffmpeg/workspace --disable-shared --enable-static
$ make -j 4
$ make install

building libvpx
=======================
Downloading http://webm.googlecode.com/files/libvpx-v1.3.0.tar.bz2 ... Done
$ ./configure --prefix=~/dev/mac/ffmpeg/workspace --disable-unit-tests --disable-shared
$ make -j 4
$ make install

building lame
=======================
Downloading http://kent.dl.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz ... Done
$ ./configure --prefix=~/dev/mac/ffmpeg/workspace --disable-shared --enable-static
$ make -j 4
$ make install

building xvidcore
=======================
Downloading http://downloads.xvid.org/downloads/xvidcore-1.3.3.tar.gz ... Done
$ ./configure --prefix=~/dev/mac/ffmpeg/workspace --disable-shared --enable-static
$ make -j 4
$ make install
$ rm ~/dev/mac/ffmpeg/workspace/lib/libxvidcore.4.dylib

building x264
=======================
Downloading ftp://ftp.videolan.org/pub/x264/snapshots/last_x264.tar.bz2 ... Done
$ ./configure --prefix=~/dev/mac/ffmpeg/workspace --disable-shared --enable-static
$ make -j 4
$ make install
$ make install-lib-static

building libogg
=======================
Downloading http://downloads.xiph.org/releases/ogg/libogg-1.3.2.tar.gz ... Done
$ ./configure --prefix=~/dev/mac/ffmpeg/workspace --disable-shared --enable-static
$ make -j 4
$ make install

building libvorbis
=======================
Downloading http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.gz ... Done
$ ./configure --prefix=~/dev/mac/ffmpeg/workspace --with-ogg-libraries=~/dev/mac/ffmpeg/workspace/lib --with-ogg-includes=/VoluPACKAGES/Ramdisk/sw/include/ --enable-static --disable-shared
$ make -j 4
$ make install

building libtheora
=======================
Downloading http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.gz ... Done
$ ./configure --prefix=~/dev/mac/ffmpeg/workspace --with-ogg-libraries=~/dev/mac/ffmpeg/workspace/lib --with-ogg-includes=~/dev/mac/ffmpeg/workspace/include/ --with-vorbis-libraries=~/dev/mac/ffmpeg/workspace/lib --with-vorbis-includes=~/dev/mac/ffmpeg/workspace/include/ --enable-static --disable-shared --disable-oggtest --disable-vorbistest --disable-examples --disable-asm
$ make -j 4
$ make install

building pkg-config
=======================
Downloading http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz ... Done
$ ./configure --silent --prefix=~/dev/mac/ffmpeg/workspace --with-pc-path=~/dev/mac/ffmpeg/workspace/lib/pkgconfig --with-internal-glib
$ make -j 4
$ make install

building cmake
=======================
Downloading http://www.cmake.org/files/v3.0/cmake-3.0.2.tar.gz ... Done
$ ./configure --prefix=~/dev/mac/ffmpeg/workspace
$ make -j 4
$ make install

building vid_stab
=======================
Downloading https://codeload.github.com/georgmartius/vid.stab/legacy.tar.gz/release-0.98b ... Done
$ cmake -DCMAKE_INSTALL_PREFIX:PATH=~/dev/mac/ffmpeg/workspace .
$ make -s install

building x265
=======================
Downloading https://bitbucket.org/multicoreware/x265/get/1.3.tar.gz ... Done
$ cmake -DCMAKE_INSTALL_PREFIX:PATH=~/dev/mac/ffmpeg/workspace -DENABLE_SHARED=NO .
$ make -j 4
$ make install

building fdk_aac
=======================
Downloading http://netcologne.dl.sourceforge.net/project/opencore-amr/fdk-aac/fdk-aac-0.1.3.tar.gz ... Done
$ ./configure --prefix=~/dev/mac/ffmpeg/workspace --disable-shared --enable-static
$ make -j 4
$ make install

building ffmpeg
=======================
Downloading http://ffmpeg.org/releases/ffmpeg-2.4.2.tar.bz2 ... Done
$ ./configure --arch=64 --prefix=~/dev/mac/ffmpeg/workspace --extra-cflags=-I~/dev/mac/ffmpeg/workspace/include --extra-ldflags=-L~/dev/mac/ffmpeg/workspace/lib --extra-version=static --disable-debug --disable-shared --enable-static --extra-cflags=--static --disable-ffplay --disable-ffserver --disable-doc --enable-version3 --enable-libvpx --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-avfilter --enable-gpl --enable-libopencore_amrwb --enable-libopencore_amrnb --enable-nonfree --enable-filters --enable-libvidstab --enable-libx265 --enable-runtime-cpudetect --enable-libfdk-aac
$ make -j 4
$ make install

Building done. The binary can be found here: ~/dev/mac/ffmpeg/workspace/bin/sw/ffmpeg

Install the binary to your /usr/bin/folder? [Y/n]

About

This ffmpeg build script provides an easy way for building ffmpeg on OSX with non-free codecs included.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%
Morty Proxy This is a proxified and sanitized view of the page, visit original site.