Here is the VideoChat application in AS3 running on www.chatvideo.es (Spanish) check it out!

For more information or to get this application for your own site please contact the administrator.
Tag Archives: api
Audio Conference Application
Audio Conference Chat Application
Please share or comment if you like this app
Initializing Camera (AS3)
This is how you get the camera using ActionScript 3.0, very useful for your Webcam/FMS related projects
[code]
package {
import flash.media.Camera;
import flash.media.Video;
public class createCamera extends Video {
private var camera:Camera;
private var camQ:int = 0;
private var FPS:int = 30;
public function createCamera (w:Number = 320, h:Number = 240)
{
this.width = w;
this.height = h;
startCamera();
}
public function startCamera():void
{
camera = Camera.getCamera();
camera.setQuality(0, camQ);
camera.setMode(this.width, this.height, FPS);
this.attachCamera(camera);
}
}
}
[/code]
Get IP in Adobe AIR 2.5
A short snippet of how to get user’s IP on AIR 2.5
[code]
var netInterfaces = NetworkInfo.networkInfo.findInterfaces();
var addresses = netInterfaces[0].addresses;
var userIP = addresses[0].address; // user IP
[/code]