OBS crashing when browse for file

Whenever I try to open a file in OBS like you would for adding an image as a source, it crashes. I can't find any logs about the issue, even when starting OBS from the terminal.

For me it feels like it tries to open a file browser window that doesn't exist on the KDE Bazzite os.

(I have freshly rebased form Kinoite in order to get virtual camera support easier than it would be to enable it on the base image)
Solution
I have a solution for you, if we run obs in a Ubuntu distrobox, I don't have the file issue. Might have other issues though.

If you paste this script into your terminal it will make a distrobox called obs-ubuntu running Ubuntu 22.04.
distrobox create --image ubuntu:22.04 --name obs-ubuntu -Y
distrobox enter obs-ubuntu 


Once you are in the distrobox run the following, this will install obs in Ubuntu and export a shortcut in your menu called OBS Studio (on obs-ubuntu)

sudo apt update
sudo apt install software-properties-common
sudo add-apt-repository ppa:obsproject/obs-studio
sudo apt update
sudo apt install ffmpeg obs-studio -y
distrobox-export --app obs


Launch OBS Studio (on obs-ubuntu) and the file issue is fixed, but it might break other things. Not sure
Was this page helpful?