im trying to stream to two cam sites chaturbate and and cam4 using nginx chaturbate works but cam4 wont pick it up rtmp://origin.cam4.com/cam4-origin-live/(thenmystreamkey) is there soming im doing wrong for this site. im using obs to stream to nginx that forwards my stream to mutiple sites this ways plays much smoother and better but cant seem to get cam4 to pick up the forward stream rtmp file : ( cane some one help with the correction of the inputs for the rtmp for cam4. my nginx configure file is below.
#user nobody;
worker_processes 1;
error_log logs/error.log;
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 4096;
application live {
live on;
record off;
push rtmp://live.stream.highwebmedia.com/live-origin/(mystreamkey)
push rtmp://origin.cam4.com/cam4-origin-live/(mystreamkey);
}
}
}
#user nobody;
worker_processes 1;
error_log logs/error.log;
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 4096;
application live {
live on;
record off;
push rtmp://live.stream.highwebmedia.com/live-origin/(mystreamkey)
push rtmp://origin.cam4.com/cam4-origin-live/(mystreamkey);
}
}
}
Last edited: