Question / Help Can't connect to server

william estrada

New Member
Hi group,
Trying to set up OBS on my Fedora 23 laptop, I have set up OBS to stream to rtmp://10.1.1.115:555 and when I start streaming I get this error:
info: [rtmp stream: 'simple_stream'] Connecting to RTMP URL rtmp://10.1.1.115:555...
info: No application or playpath in URL!
info: 10.1.1.115:555 is offline. Try a different server (ECONNREFUSED).
info: [rtmp stream: 'simple_stream'] Connection to rtmp://10.1.1.115:555 failed: -2
info: ==== Streaming Stop ================================================​
I am just running OBS client, do I need to start something else?

I tried to upload the log file but not sure it worked? I can be found at http://Mt-Umunhum-Wireless.net/OBS
 

Attachments

  • obs.log
    6.1 KB · Views: 43
  • obs.txt
    6.1 KB · Views: 41
  • obs.txt
    6.1 KB · Views: 33
Last edited:

william estrada

New Member
OK, that was plan enough. I assume that the server is nginx? So I installed it and configured it with
rtmp {
server {
listen 1935;
chunk_size 8192;
application vod {
play /home/juanbg/vod ;
}
application live {
live on;
record off;
}​
Now I get "Streaming started" but I don't know how to view it?
 

Alexandre Vicenzi

New Member
OK, that was plan enough. I assume that the server is nginx? So I installed it and configured it with
rtmp {
server {
listen 1935;
chunk_size 8192;
application vod {
play /home/juanbg/vod ;
}
application live {
live on;
record off;
}​
Now I get "Streaming started" but I don't know how to view it?

Just open VLC and open a network stream, your URL should be something like rtmp://<ip>/<app>/<stream-name>
 
Top