FCS: individual streams in, one multicast room to show them in.
Ok, Heres how I understand this to work. Please let me know if it makes sense and if you have any code examples or tutorial links for this kind of thing that would be super!Lets say I make an swf with embedded video on the stage called "video_in". The simplified AS is as such:
//
client_cam = Camera.get();
client_mic = Microphone.get();
video_in.attachVideo(client_cam);
/*
then I would need to make some kind of call to the app will run it say: "video_app" (what does that code look like?)
then somehow in the server side video_app main.asc code I need to attach this video feed to a sharedObject right??
*/
.
.
Then I make a second swf called "video_out" (my swf for multicast).
It calls to the video_app, locates its sharedObject (via a common URI??) and finds out how many clients are connected to it, attaches as many embedded videos and needed and simply streams each clients live video back out through each embedded video.
Does this make sense?
