Skip to main content
niteshkumar
Inspiring
June 11, 2009
Question

Live Telecast getting problem on internet

  • June 11, 2009
  • 1 reply
  • 1868 views

Hi,

     I have published live video to FMS and put the respective publish and telecast html file with swf on web server for access using internet.

     I am not able to view image when run the link for telecast. I don't think there is any problem in web server, as I am able to view the page title when accessing the telecast html file on internet. but I am getting only title but not the video on that page. But when I am trying to access it through LAN there is no problem in it.

Please help.

Thanx.

    This topic has been closed for replies.

    1 reply

    June 11, 2009

    If the .swf is loading and not connecting, chances are there's a firewall or router getting in the way.

    1. Make sure all firewalls have port 1935 open

    2. On the router, make sure port 1935 is open to the internet and forwarded to the FMS machine.

    If you've configured FMS to listen on port 80, make sure 80 is open and forwarded to the FMS machine as well.

    niteshkumar
    Inspiring
    June 12, 2009

    Hi Jay,

              I've installed FMS with port 4000, and this port is open on our firewall as

              well as router. Infact i have open it for anything to test it on internet.

              The architecture is like :

                                    ( IP of Server: 10.8.4.39)

    Capturing system------>Server System-------->Client System

    (Camera)                     (IIS + FMS)             (telecast)

          |                             |                    

          |                             |                    

           <---------------------------|

                      (PlayBack video)

                                          

          

    Capturing System:-

    having camera

    and opens publish.html file from server System to

    publish live video to server.

    Server System :-

    IIS Server, Adobe media server

    IIS containing(publish and telecast html and swf files) .

    Telecast System:-

    opens telecast.html file fom server system

    to view the live video

                                                                          

      

    This the constructor for the capturing System:

              public function PublishLive()
                {
                      nc = new NetConnection();
                      nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
                      nc.connect("rtmp://10.8.4.39:4000/publishlive");
                }

    This the contructor for Client System:

    public function TelecastLive()
                {
                      nc = new NetConnection();
                      nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
                      nc.connect("rtmp://10.8.4.39:4000/publishlive");
                }

    Both the Html and Swf file of publishlive and telecastlive are on the IIS for publishing using web server.

    Now, as per architecture given above I am tryig to open the publishlive.html file using Internet IP Address

    The page gets opened but the image is not shown on both telecast side(sure) as well as publish side(may be)

    June 12, 2009

    If it works inside the LAN, it's reasonable to assume that the FMS application is working.

    On the client system, what status code do you get in the onNetStatus handler?