Question / Help Streaming To Two Or More Sites @ Once.

gHunt

New Member
Hi guys, First off OBS is AWESOME. Second I just found out about hitbox.com a streaming site, i would like to stream there but have 800 followers on Twitch already www.Twitch.tv/thefuriousfurion. And as we all know that takes forever to build up, I watched the guide http://blog.hemp-society.de/2013/07/how-to-run-more-than-one-streaminstance.html and i downloaded and watch a guide for dxtory but i am still getting hook errors... Any help would be much appreciated as i spent about 16 hours trying to fix this already. Ideally i would like 2 streams exactly the same webcam ect.
 
Then either you didn't set up the server correctly, or you entered your server information into the custom RTMP settings incorrectly.
 
vRJ2bAR.png
 
#user nobody;
worker_processes 1;

error_log logs/rtmp_error.log debug;
pid logs/nginx.pid;

events {
worker_connections 1024;
}

rtmp {
server {
listen 1935;
chunk_size 8192;

application stream {
live on;
meta copy;
push rtmp://live-lax.twitch.tv/app/live_****;
push rtmp://live.hitbox.tv/push/g-hunt?key=****;
}
}
}
 
Last edited by a moderator:
Removed your two stream keys, for safety you should reset them both. Anyone that saw your post could now stream to your Twitch and Hitbox channel.

I personally recommend to ditch nginx and use two instances of OBS (https://obsproject.com/forum/resour...-stream-and-record-at-different-qualities.74/) as you tried in the first place. It gives you more info and options to do the two streams. Nginx has the only benefit of needing less CPU power.

To your problem with nginx, the IP you entered into obs 50.53... is that your local network IP? If the server runs on your PC you are streaming from you can for example use 127.0.0.1 instead or your local network IP.
 
Honestly at this point I think you would be better off just waiting for the feature to be added to OBS rather than doing it yourself.
 
Back
Top