Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MacOS FFMpeg builds. #56

Merged
merged 6 commits into from
Dec 19, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions travis/build-wheels-osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,15 @@ echo 'PIP and brew installs'

pip install "$BUILD_DEPENDS"

echo 'Installing QT4'
brew tap cartr/qt4
brew tap-pin cartr/qt4
brew install qt@4
echo '-----------------'
echo 'Installing FFmpeg'
brew install ffmpeg --without-x264 --without-xvid --without-gpl
brew info ffmpeg
echo '-----------------'

qmake -query

Expand Down Expand Up @@ -113,13 +119,13 @@ echo 'Begin build'

if [[ $PYTHON_VERSION == 2* ]]; then
echo 'Build for Py2'
make -j8 opencv_python2
make -j2 opencv_python2

fi

if [[ $PYTHON_VERSION == 3* ]]; then
echo 'Build for Py3'
make -j8 opencv_python3
make -j2 opencv_python3

fi

Expand Down