How can I install the browser source plugin in obs (Open Broadcaster Software) studio?
-
1What's "obs studio" and about which browser plug-in are you talking? – David Foerster Nov 24 '16 at 14:53
-
the obs studio software is used for creating facebook live poll reaction – prashanth padala Nov 25 '16 at 07:22
-
Where is the obs-qtwebkit directory? How do I find it? – North7able Jan 15 '20 at 02:36
2 Answers
The Browser source for OBS Studio webpage says:
There is not currently a Linux build of this browser plugin, but in the meantime bazukas has built obs-qtwebkit, another browser source based on qtwebkit.
Using the latest version of OBS Studio from ppa:obsproject/obs-studio (currently version 0.16.2) will simplify the installation of obs-qtwebkit.
Installation
Make sure you have necessary dependencies installed, which are obs-studio and qt5 and qt5-webkit development packages. You may need to set OBS_INCLUDE and OBS_LIB env variables (see Makefile).
On Ubuntu 16.04 you may need to install the developer libraries to compile.
sudo apt-get install qtbase5-dev sudo apt-get install libqt5webkit5-devRun
make
in the obs-qtwebkit directory to build the plugin. If your OBS version is < 0.11.2, runOBS_PLUGIN_BUILD_OLD=1 make
Run
make install
to copy plugin binaries into$HOME/.config/obs-studio/plugins
. If your OBS version is < 0.11.1, runOBS_PLUGIN_INSTALL_OLD=1 make install

- 114,770
-
1These instructions are a bit out of date. Go here for current: https://github.com/bazukas/obs-linuxbrowser – GenericJam Oct 08 '17 at 22:57
The browser plugin does not come with the version of obs that comes with ubuntu studio. To fix this, sudo apt-get remove obs-studio ; sudo apt-get autoremove
to get rid of the default version, then install the version from OBS's own PPA. See their website for instructions: https://obsproject.com/wiki/install-instructions#linux

- 120
-
best answer for me, allowed me to get OBS 26.1.1 on Ubuntu 20.04.2 LTS ( with the new integrated browser source feature ) , working great ! – neofutur May 20 '21 at 20:40