Open Broadcasting Software Version: 27.1.0
Can this software run in Puppy Linux? With the popularity of video streaming this software should be an option in any OS. The latest version was released a few days ago.
From its website:
Linux portable mode (all distros):
-
Please note that you need to install the build dependencies for your distribution before following this steps. See above.
-
You can build in portable mode on Linux, which installs all the files to an isolated directory.
If building with browser source:
Code: Select all
wget https://cdn-fastly.obsproject.com/downloads/cef_binary_4280_linux64.tar.bz2
tar -xjf ./cef_binary_4280_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_4280_linux64" ..
make -j4 && make install
If building without browser source:
Code: Select all
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=OFF ..
make -j4 && make install
Not being an expert in compiling, I did try the commands above using FOSSAPUP 64, it complained about Pipewire but there is an option to turn it off, at the end I stopped trying to compile when an error about qt5 came up.