Skip to main content
October 19, 2012
Question

how to work rtmfp with fms 4.0?

  • October 19, 2012
  • 1 reply
  • 646 views

Hello,

I'm working on an application to make a video chat between two people with actionscript 3 and flash media server 4.0. To do this, I followed the tutorial of Tom Krcha to do a P2P video chat with cirrus: http://flashrealtime.com/tuts/p2p-in-flash.html.

My application works fine with cirrus but not with fms:

The broadcasting netstream through a NetConnection in rtmfp works but the receiving netstream(video of the another person) doesn't work.I put a listener on the receiving netstream video(NetStatusEvent.NET_STATUS) but it returns nothing.However, this code works very well whith cirrus.

Miss I a configuration on the fms server?

I currently use two server side applications to make a video chat: multicast (which was already present on the server) or live (which was also present). Moreover, in Adaptor.xml, rtmfp is enable.

This topic has been closed for replies.

1 reply

October 22, 2012

Hi,

With one to one video chat, using rtmfp with FMS is not advisable as it will use your server bandwidth. RTMFP is useful for multicasting a video. Also, if you are trying to use FMS for one to one video chat, you will have to handle both client side code as well as server side code yourself and the same piece of code will not work which worked with cirrus as with FMS, you will need a server side application in which you need to handle both the published streams. Also, Developer's key is not required for FMS.

Thanks,

Chandan

October 23, 2012

Thanks,

I suspected that I  miss a method in the application server side. Nothing is said in  adobe dev_guide on it.

Otherwise, yes, I don't use developer's key