Question

I am totally new to Adobe (Flash) Media server, We are using Flash Media Server on Amazon EC2 instance, and i can browse the default page of the media server with no problem. I am also using Flash Builder (flex 4.6) to connect to the server. Here is my code:

        private function connect():void {
            nc = new NetConnection();
            nc.addEventListener(NetStatusEvent.NET_STATUS,netStatusHandler);
            nc.connect("rtmp://000.000.000.000/applications/vod/");
            mic =Microphone.getMicrophone();
            mic.setUseEchoSuppression(true);
            mic.setSilenceLevel(0);
            cam = Camera.getCamera();
        }

But it cant connect to the server, any comment? Just wondering if my rtmp address is correct, how can I check it outside of my code?

Was it helpful?

Solution 2

I found what was wrong with the netconnection location. I created a new folder in rootinstall/applications/ and called it testfolder and gave it write permission:

    nc.connect("rtmp://000.000.000.000/testfolder");

OTHER TIPS

just try with

nc.connect("rtmp://000.000.000.000/vod/fileName.f4v");

make sure your FMS is running on default port, if you assign any custom port then include it in the url.

In the question you used like

nc.connect("rtmp://000.000.000.000/applications/vod/");

applications is not required as it represents your webapps folder. you just need to add

nc.connect("rtmp://000.000.000.000/vod/

this should connect to your media server.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top