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