NVIDIA Jetson AGX Xavier OBS Installation
Introduction
Open Broadcaster Software (OBS) is the most popular streaming software. In this blog, I would like to discuss how to install and use OBS on NVIDIA Jetson AGX Xavier.
Installation
Ayachika Kitazaki has figured out how to install OBS on Jetson Nano. Most of his protocols are still working except that we have to use a selected version of the OBS to install, as the latest version is broken for the ARM64 platform.
Install Dependencies
1 | $ sudo apt update |
Install OBS
Download OBS-Studio 26.1.2 from GitHub.
1 | $ wget https://github.com/obsproject/obs-studio/archive/refs/tags/26.1.2.zip |
Build and install it onto the system.
1 | $ cd obs-studio-26.1.2 |
Note that we are not building from the master branch because it is currently broken for ARM64 builds. It is very likely that pipewire
is missing in the Linux ARM64 system.
1 | CMake Error at /usr/local/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:230 (message): |
Building pipewire
on the Linux ARM64 system according to the official instruction was also not successful.
Start OBS
OBS might have difficulty finding the OpenGL library. It could be manually specified using LD_PRELOAD
.
1 | $ LD_PRELOAD=/usr/lib/aarch64-linux-gnu/libGL.so obs |
Streaming to Twitch has been tested and got no problems.
References
NVIDIA Jetson AGX Xavier OBS Installation
https://leimao.github.io/blog/NVIDIA-Jetson-AGX-Xavier-OBS-Installation/