Fusion vs IP Multicast player difference
I have created a multicast video player using actionscript 3 to which I pass parameters and based on it I change different things in player . Here is my code .
var groupspec:GroupSpecifier = new GroupSpecifier(group);
groupspec.setPublishPassword(streampassword);
groupspec.multicastEnabled = true;
if(isFusionMulticast){
groupspec.serverChannelEnabled = true;
groupspec.ipMulticastMemberUpdatesEnabled = true;
}else if(isIPMulticast){
groupspec.peerToPeerDisabled = true;
}
groupspec.addIPMulticastAddress(multicastip);
ns=new NetStream(nc,groupspec.groupspecWithAuthorizations());
Is above code correct to handle Fusion or multicase ?
For NetConnection I do nc.connect("rtmfp:"); in both case : Fusion or IP Multicast . Will that be any difference in both cases ?
