JPL
Member
I was able to get it compiled and running on 64bit Ubuntu 14.04 without much trouble. Here's roughly what I did; the line installing all the prerequisite libraries is probably incomplete. If cmake fails, install whichever library(s) it complains about, clear out the cmbulid directory, and try the cmake command again.
sudo apt-add-repository ppa:jon-severinsson/ffmpeg
sudo apt-get update
sudo apt-get install ffmpeg libqt5widgets-dev libqt5gui-dev libqt5core-dev libswresample-dev libswscale-dev libavformat-dev
git clone https://github.com/jp9000/obs-studio.git obs-studio
cd obs-studio
mkdir cmbuild
cd cmbuild
cmake ..
make install
Cool, thanks... one problem, when I try to install all those packages with apt-get I get this error:
E: Unable to locate package libqt5widgets-dev
E: Unable to locate package libqt5gui-dev
E: Unable to locate package libqt5core-dev
When I browse http://packages.ubuntu.com, those packages do not appear to be in the repos for Trusty.