December 20, 2016 · Ubuntu

Setup OBS Studio in Ubuntu 16+

sudo apt-get install build-essential pkg-config cmake git checkinstall libx11-dev libgl1-mesa-dev libpulse-dev libxcomposite-dev libxinerama-dev libv4l-dev libudev-dev libfreetype6-dev libfontconfig-dev qtbase5-dev libqt5x11extras5-dev libx264-dev libxcb-xinerama0-dev libxcb-shm0-dev libjack-jackd2-dev libcurl4-openssl-dev libavcodec-dev libavfilter-dev libavdevice-dev libfdk-aac-dev git-core

cd ~ && git clone -b 'master' 'https://github.com/jp9000/obs-studio.git' ~/'Downloads/obs-src' && sync


mkdir -p ~/'Downloads/obs-src/build' && cd ~/'Downloads/obs-src/build' && cmake -DUNIX_STRUCTURE=1 -DCMAKE_INSTALL_PREFIX=/usr .. && make -j4 && sudo checkinstall --pkgname=obs-studio --fstrans=no --backup=no --pkgversion="$(date +%Y%m%d)-git" --deldoc=yes && sync

rm -R ~/'Downloads/obs-src' && sync

#uninstall
#sudo apt-get remove 'obs-studio'

src
https://gitlab.com/Espionage724/Linux/blob/master/Clients/OBS-Studio.txt