Bug Report Linux Mint, but the brownser font does not appear

cadunico fodovisk

New Member
Hello everyone,

I have Version: 25.0.8 installed on a Linux Mint, but the brownser font does not appear.

I really appreciate everyone's attention.
 

Gabrisover

New Member
Hi @cadunico fodovisk.

I had the same problem, so I decided to compile and solve the problem.
Apparently the ppa version ubuntu and derivatives the browser is disabled, the only version that is enabled is snap, but as snap has several problems ... including permissions, resolving to compile and that's what was saved. the version I compiled was the most stable at 27.0.7

build dependencies see on the website: https://github.com/obsproject/obs-studio/wiki/Install-Instructions#debian-based-build-directions

Command to compile the stable version if compiling the latest version must add a branch in the cloning git url
Code:
wget https://cdn-fastly.obsproject.com/downloads/cef_binary_3770_linux64.tar.bz2
tar -xjf ./cef_binary_3770_linux64.tar.bz2
git clone --recursive https://github.com/obsproject/obs-studio.git
cd obs-studio
mkdir build && cd build
cmake -DUNIX_STRUCTURE=0 -DCMAKE_INSTALL_PREFIX="${HOME}/obs-studio-portable" -DBUILD_BROWSER=ON -DCEF_ROOT_DIR="../../cef_binary_3770_linux64" ..
make -j4 && make install
This will make it compile OBS and copy it to your /home/{user_name}/obs-studio-portable

Prefer to download the compiled version? I compiled and uploaded it to my github account:
https://github.com/utherbone/OBS-STUDIO-PORTABLE-BUILDS/releases/tag/25.0.7
 
Top