From an OBS to another OBS: remote broadcasting

Tormy

Member
I tried several ways to stream from an OBS (remote studio) to another OBS (Main Studio), but unsuccessfully.
The only one way I found and I want to share with you, is the following:
  • Install NGINX with RTMP module and set it up as follows (commenting all the HTTP lines) (file: nginx.conf)
Code:
worker_processes  1;

error_log  logs/error.log debug;
error_log  logs/error.log  debug;
error_log  logs/error.log  notice;
error_log  logs/error.log  info;
pid        logs/nginx.pid;

events {
    worker_connections  1024;
}

rtmp {
    server {
        listen 1935;
        chunk_size 8192;
        application live { # http://localhost:1935/live
            live on;
            meta copy;
            record off;
            allow publish 127.0.0.1;
            deny publish all;

        }
       
        #application hls {
        #    live on;
        #    hls on;
        #    hls_path temp/hls;
        #    hls_fragment 8s;
        #}
    }
}
  • setup the Remote Studio OBS in the way shown on the attached pic: OBS SETUP.jpg here below
OBS SETUP.JPG

  • start streaming
  • On the receiving OBS (Main Studio), into a scene create a VLC Source (the browser source doen't call any RTMP), and set it up as shown on the attached pic: OBS MAIN STUDIO.jpg here below:
OBS MAIN STUDIO.JPG


  • just set the audio sources properly and you are perfectly on line
 
Top