SRT obs linux Mint

dbbrito

New Member
Friends, I installed the obs on linux Mint but I can't send the videos through the larix app to the obs via srt, I have already released the ports on the firewall and performed the installation as below, on windows just install the obs and it works right away, but in the linux I'm not succeeding, can someone help me please.
Anyway, is there an easier way, even in another linux distribution?

cd /home/dan/ffmpeg_sources
git clone --depth 1 https://github.com/Haivision/srt.git
cd ~/ffmpeg_sources/srt
PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" cmake -G "Unix Makefiles" -DCMAKE_INSTALL_BINDIR="$HOME/ffmpeg_build/bin" -DCMAKE_INSTALL_INCLUDEDIR="$HOME/ffmpeg_build/include" -DCMAKE_INSTALL_LIBDIR="$HOME/ffmpeg_build/lib" -DCMAKE_INSTALL_PREFIX="$HOME/ffmpeg_build" -DENABLE_SHARED:bool=off
make
make install

cd ~/ffmpeg_sources &&
wget -O ffmpeg-snapshot.tar.bz2 https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 &&
tar xjvf ffmpeg-snapshot.tar.bz2 &&
cd ffmpeg &&
PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure
--prefix="$HOME/ffmpeg_build"
--pkg-config-flags="--static"
--extra-cflags="-I$HOME/ffmpeg_build/include"
--extra-ldflags="-L$HOME/ffmpeg_build/lib"
--extra-libs="-lpthread -lm"
--ld="g++"
--bindir="$HOME/bin"
--enable-gpl
--enable-gnutls
--enable-libass
--enable-libfdk-aac
--enable-libfreetype
--enable-libmp3lame
--enable-libopus
--enable-libsvtav1
--enable-libdav1d
--enable-libvorbis
--enable-libvpx
--enable-libsrt
--enable-libx264
--enable-libx265
--enable-nonfree &&
PATH="$HOME/bin:$PATH" make &&
make install &&
hash -r

thank you so much
 

danma06

New Member
For whatever reason, it doesn't look like the Linux version of OBS is built with SRT support.

I thought maybe this would change with OBS 27 - but it doesn't appear to be so.

I'm not sure why the binaries are built without SRT.
 

Tuna

Member
Your FFMPEG needs to have SRT support. Plus OBS needs to load that version of FFMPEG with SRT support. If you compile a FFMPEG with SRT but OBS continues to load the system FFMPEG without SRT nothing is gained.
 
Top