Question / Help broadcast simultaneously (Not Youtube, Facebook,Twich etc. etc, etc...)

Dj_NeST

New Member
Hi People!!


I use OBS for my webcammodel work and I see that the problem with the software is that it does not give the option to do a simultaneous broadcast on the pages where I work. Anyone know if this option exists? Or if there is any way to do it?

Thank You
 

TryHD

Member
Did you look at the Step 3?
There is a link how you can forward the stream to all the sites you want https://github.com/arut/nginx-rtmp-module/wiki/Directives
look at push
example would be
Code:
rtmp {
    server {
        listen 1935;
        chunk_size 4096;

        application live {
            live on;
            record off;

            push rtmp://TWITCH_ADDRESS/TWITCH_STREAM_KEY;
            push rtmp://YOUTUBE_ADDRESS/YOUTUBE_STREAM_KEY;
         }
    }
}
 

TryHD

Member
ok.
At which services you want to stream?
At which bitrate you want to stream?
how much upload do you have?
 

Dj_NeST

New Member
What files do I download? Isn't there a miserable guide or video tutorial for windows? I'm getting tired of trying and trying without success!

HEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEELP!!
 

SamTDS

New Member
I have my old machine as linux runnign nginx. all i have it doign is pushing to youtube at twitch and set obs to my old machine. my old machine isnt enough to rencode
 

SamTDS

New Member
I found the initial install to be a bit confusing but once i got it installed all i do is find the config and change it when i need a certain setting and just run using the command history feature of linux to get the start command.
 

Dj_NeST

New Member
But I need the installation for windows ... I need to know which files I have to download from that page ... And I do not use Linux, I use windows.
 

Dj_NeST

New Member
NOOOOOOOOOOOOOOOOOOOOOOO i don't use restream i don't want use the multistream with YT or Twitch... Is that nobody understands me?
 

fatmatrow

Member
you can use whatever streaming service you want with restream. If you want to feed one rtmp stream into multiple services, you just have to pay a few bucks a month, restream is the way to go i promise
 

TryHD

Member
Hi @Tu_Palo
I try it as simple and short as possible.
you need to download this nginx version http://nginx-win.ecsds.eu/download/nginx 1.7.12.1 Lizard.zip
than you have to extract the zip. After that navigate to the folder conf in the extracted zip archive, there you create a file named nginx.conf, please make sure you have file extensions enabled in your windows options, so you don't create something like nginx.conf.txt
in the nginx.conf file you created you put this.
Code:
worker_processes  1;
events {
    worker_connections  1024;
}
rtmp {
        server {
                listen 1935;
                chunk_size 4096;

                application live {
                        live on;
                        record off;
                     
                        push rtmp://url_of_the_service_where_you_want_to_stream_to;
                }
        }
}
if you name the services you aim to stream to or pm that to me i can help with the push syntax.
after that you start nginx with clicking on nginx.exe (you can execute it in a cmd window so you see possible errors.

after that you point your obs to rmtp://127.0.0.1:1935/live
 
Last edited:
Top