Stream via C# to local server

PonySlayStation

New Member
Hello guys,

I'm completely new to OBS and I was wondering if it was possible to inegrate the source code in a C# project and stream the screen video to another device in a LAN.

Similar to RealVNC or TeamViewer actually...

If so, could you point me in the right directions too?

Thanks a lot!
 

Jack0r

The Helping Squad
In theory this is probably technically possible, but OBS(-Studio) currently is using the rtmp protocol for its output.
That means it needs an rtmp server to stream to. You probably want a more direct connection approach to decrease the latency. A user on the forum used the Custom Output in OBS-Studio to send out an udp stream he could watch in VLC on a different PC.
You could take a look at the different OBS-Studio modules in libobs on Github.
https://github.com/jp9000/obs-studio/tree/master/libobs
 

PonySlayStation

New Member
In theory this is probably technically possible, but OBS(-Studio) currently is using the rtmp protocol for its output.
That means it needs an rtmp server to stream to. You probably want a more direct connection approach to decrease the latency. A user on the forum used the Custom Output in OBS-Studio to send out an udp stream he could watch in VLC on a different PC.
You could take a look at the different OBS-Studio modules in libobs on Github.
https://github.com/jp9000/obs-studio/tree/master/libobs

Thanks a lot, I will take a look at it !
 
Top