I have a live stream site build on red5 server and when i subscribe, the live video seems to drop frames.
I am using the oflademo for my rtmp application.
Here is the actionscript I use for the camera setting:
Broadcast
// setup cam
cam = Camera.get();
// setting dimensions and framerate
cam.setMode(320, 240, 15, false);
// set quality
cam.setQuality(0,0);
cam.setKeyFrameInterval(48);
Subscribe is the same as broadcast.
Can anyone give a hand.